This is an automated email from the git hooks/post-receive script. jamespage pushed a commit to branch patch-queue/master in repository jenkins.
commit d712c263da0a3d71799a232d07f2dc6da07ed2ea Author: James Page <[email protected]> Date: Mon Aug 12 21:08:43 2013 +0100 Exclude asm dependencies from jnr-posix This pulls in asm4 which creates class loading issues. --- core/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/core/pom.xml b/core/pom.xml index dc325b4..75e4a54 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -116,6 +116,16 @@ THE SOFTWARE. <groupId>org.jruby.ext.posix</groupId> <artifactId>jna-posix</artifactId> <version>1.0.3</version> + <exclusions> + <exclusion> + <groupId>org.ow2.asm</groupId> + <artifactId>asm</artifactId> + </exclusion> + <exclusion> + <groupId>org.ow2.asm</groupId> + <artifactId>asm-commons</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.jruby.extras</groupId> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jenkins.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

