Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Apply patch for Debian 910093
· 645a49ce
Tony Mancill
authored
Nov 19, 2018
645a49ce
Update Homepage URL to use https
· 67d19ed7
Tony Mancill
authored
Nov 20, 2018
67d19ed7
Bump Standards-Version to 4.2.1
· c9ba1fad
Tony Mancill
authored
Nov 20, 2018
c9ba1fad
prepare changelog for upload to unstable
· ae7f24d3
Tony Mancill
authored
Nov 20, 2018
ae7f24d3
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
ae7f24d3
maven-compiler-plugin (3.8.0-2) unstable; urgency=medium
* Team upload.
[ Tiago Stürmer Daitx ]
* Fix tests: (Closes: #910093)
- debian/rules: set JAVA_HOME to prevent compiler test failure.
- debian/patches/01-fix-wrong-junit-path.patch: patch wrong junit path in
compiler test.
[ tony mancill ]
* Update Homepage URL to use https
* Bump Standards-Version to 4.2.1
-- tony mancill <tmancill@debian.org> Tue, 20 Nov 2018 21:13:36 -0800
maven-compiler-plugin (3.8.0-1) unstable; urgency=medium
* Team upload.
...
...
debian/control
View file @
ae7f24d3
...
...
@@ -19,10 +19,10 @@ Build-Depends:
libplexus-utils-java,
libqdox2-java (>= 2.0~M5),
maven-debian-helper (>= 1.4)
Standards-Version: 4.
1.5
Standards-Version: 4.
2.1
Vcs-Git: https://salsa.debian.org/java-team/maven-compiler-plugin.git
Vcs-Browser: https://salsa.debian.org/java-team/maven-compiler-plugin
Homepage: http://maven.apache.org/plugins/maven-compiler-plugin/
Homepage: http
s
://maven.apache.org/plugins/maven-compiler-plugin/
Package: libmaven-compiler-plugin-java
Architecture: all
...
...
debian/patches/01-fix-wrong-junit-path.patch
0 → 100644
View file @
ae7f24d3
Description: Fix wrong junit patch in Compiler test.
The compiler testcase sets an absolute path to junit's jar file
version 3.8.1 even though the pom.xml file now depends on 4.12
(4.x on Debian).
.
This patch fixes it and set the fixed path to a current junit jar
file.
Author: Tiago Stürmer Daitx <tiago.daitx@ubuntu.com>
Last-Update: 2017-09-08
--- maven-compiler-plugin-3.6.2.orig/src/test/java/org/apache/maven/plugin/compiler/CompilerMojoTestCase.java
+++ maven-compiler-plugin-3.6.2/src/test/java/org/apache/maven/plugin/compiler/CompilerMojoTestCase.java
@@ -397,7 +397,7 @@
public class CompilerMojoTestCase
String localRepository = System.getProperty( "localRepository" );
if ( localRepository != null )
{
- artifactFile = new File( localRepository, "junit/junit/3.8.1/junit-3.8.1.jar" );
+ artifactFile = new File( localRepository, "junit/junit/4.x/junit-4.x.jar" );
}
else
{
debian/patches/series
0 → 100644
View file @
ae7f24d3
01-fix-wrong-junit-path.patch
debian/rules
View file @
ae7f24d3
#!/usr/bin/make -f
export JAVA_HOME=/usr/lib/jvm/default-java
%:
dh $@