This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository gradle.
commit a27939865a1e5230a7ec68cf50f42a10bcf0b0af Author: Emmanuel Bourg <[email protected]> Date: Tue Nov 24 14:19:00 2015 +0100 Fixed the compatibility with Maven 3.3.9 --- debian/changelog | 8 ++++++++ debian/control | 1 + debian/patches/maven-3.3.9-compatibility.patch | 14 ++++++++++++++ debian/patches/series | 1 + 4 files changed, 24 insertions(+) diff --git a/debian/changelog b/debian/changelog index a29ecce..283f94e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +gradle (2.7-4) UNRELEASED; urgency=medium + + * Team upload. + * Fixed the compatibility with Maven 3.3.9 by adding commons-lang3 + to the classpath + + -- Emmanuel Bourg <[email protected]> Tue, 24 Nov 2015 13:14:44 +0100 + gradle (2.7-3) unstable; urgency=medium * Team upload. diff --git a/debian/control b/debian/control index 53a88e7..293d618 100644 --- a/debian/control +++ b/debian/control @@ -31,6 +31,7 @@ Build-Depends: ant, libcommons-collections3-java, libcommons-io-java, libcommons-lang-java (>= 2.6), + libcommons-lang3-java, libcore-renderer-java, libdom4j-java, libgoogle-gson-java, diff --git a/debian/patches/maven-3.3.9-compatibility.patch b/debian/patches/maven-3.3.9-compatibility.patch new file mode 100644 index 0000000..3c585fa --- /dev/null +++ b/debian/patches/maven-3.3.9-compatibility.patch @@ -0,0 +1,14 @@ +Description: Fix the compatibility with Maven 3.3.9 by adding commons-lang3 to the classpath +Author: Emmanuel Bourg <[email protected]> +Forwarded: no +--- a/gradle/dependencies.gradle ++++ b/gradle/dependencies.gradle +@@ -135,6 +135,8 @@ + dependency "org.eclipse.aether:eclipse-aether-spi" + dependency "org.eclipse.aether:eclipse-aether-util" + dependency 'org.eclipse.aether:eclipse-aether-connector-basic' ++ ++ dependency "org.apache.commons:commons-lang3" + } + + libraries.spock = [ diff --git a/debian/patches/series b/debian/patches/series index 3f75ad1..2efeba8 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -22,3 +22,4 @@ maven_builder_support.diff generate_classpath.diff generate_pom.diff ivy-2.4.0.patch +maven-3.3.9-compatibility.patch -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/gradle.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

