Skip to content
Commits on Source (4)
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.
......
......@@ -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: https://maven.apache.org/plugins/maven-compiler-plugin/
Package: libmaven-compiler-plugin-java
Architecture: all
......
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
{
01-fix-wrong-junit-path.patch
#!/usr/bin/make -f
export JAVA_HOME=/usr/lib/jvm/default-java
%:
dh $@