[pkg-java] r9006 - in trunk/maven-ant-helper: . debian

Ludovic Claude ludovicc-guest at alioth.debian.org
Wed Jul 8 22:44:10 UTC 2009


Author: ludovicc-guest
Date: 2009-07-08 22:44:10 +0000 (Wed, 08 Jul 2009)
New Revision: 9006

Modified:
   trunk/maven-ant-helper/debian/changelog
   trunk/maven-ant-helper/maven-build.xml
Log:
Fix a bug introduced by previous version. It was affecting
only the builds which execute a Maven plugin.

Modified: trunk/maven-ant-helper/debian/changelog
===================================================================
--- trunk/maven-ant-helper/debian/changelog	2009-07-08 22:40:27 UTC (rev 9005)
+++ trunk/maven-ant-helper/debian/changelog	2009-07-08 22:44:10 UTC (rev 9006)
@@ -1,3 +1,10 @@
+maven-ant-helper (6.2) unstable; urgency=low
+
+  * Fix a bug introduced by previous version. It was affecting
+    only the builds which execute a Maven plugin.
+
+ -- Ludovic Claude <ludovic.claude at laposte.net>  Wed, 08 Jul 2009 23:41:02 +0100
+
 maven-ant-helper (6.1) unstable; urgency=low
 
   * Provide a workaround to use gcj with maven-ant-helper

Modified: trunk/maven-ant-helper/maven-build.xml
===================================================================
--- trunk/maven-ant-helper/maven-build.xml	2009-07-08 22:40:27 UTC (rev 9005)
+++ trunk/maven-ant-helper/maven-build.xml	2009-07-08 22:44:10 UTC (rev 9006)
@@ -220,7 +220,7 @@
       <attribute name="target"/>
       <sequential>
         <java fork="true" dir="." classname="org.apache.maven.cli.MavenCli" failonerror="true">
-          <sysproperty value="-Xmx256M"/>
+          <jvmarg value="-Xmx256M"/>
           <classpath refid="maven.classpath"/>
           <arg value="-Dmaven.test.skip"/>
           <arg value="--offline"/>
@@ -241,7 +241,7 @@
         </copy>
 
         <java fork="true" dir="." classname="org.apache.maven.cli.MavenCli" failonerror="true">
-          <sysproperty value="-Xmx256M"/>
+          <jvmarg value="-Xmx256M"/>
           <classpath refid="maven.classpath"/>
           <arg value="-Dmaven.test.skip"/>
           <arg value="--offline"/>




More information about the pkg-java-commits mailing list