This is an automated email from the git hooks/post-receive script. nomadium pushed a commit to branch master in repository yecht.
commit 7f418391ce4a6ad24ce46ccf3a77197b419ef739 Author: Christian Meier <[email protected]> Date: Fri Sep 4 12:02:56 2015 +0200 attach an extra jar without ruby files first step to fix https://github.com/jruby/jruby/issues/3307 Sponsored by Lookout Inc. --- pom.xml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 89f33b5..b49190f 100644 --- a/pom.xml +++ b/pom.xml @@ -43,6 +43,26 @@ </execution> </executions> </plugin> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <id>for jruby</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + <configuration> + <classifier>jruby</classifier> + <excludes> + <exclude>yaml/**</exclude> + <exclude>okay/**</exclude> + <exclude>*rb</exclude> + </excludes> + </configuration> + </execution> + </executions> + </plugin> </plugins> <resources> <resource> @@ -68,7 +88,7 @@ <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-core</artifactId> - <version>[1.7.0,1.8.0)</version> + <version>1.7.22</version> <scope>provided</scope> </dependency> </dependencies> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/yecht.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

