[jbossws-commits] JBossWS SVN: r12509 - stack/cxf/trunk.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Jun 18 11:38:22 EDT 2010


Author: alessio.soldano at jboss.com
Date: 2010-06-18 11:38:22 -0400 (Fri, 18 Jun 2010)
New Revision: 12509

Modified:
   stack/cxf/trunk/build.xml
Log:
Fix maven.opts propagation


Modified: stack/cxf/trunk/build.xml
===================================================================
--- stack/cxf/trunk/build.xml	2010-06-18 15:35:47 UTC (rev 12508)
+++ stack/cxf/trunk/build.xml	2010-06-18 15:38:22 UTC (rev 12509)
@@ -48,12 +48,12 @@
   </target>
 
   <target name="mvn-settings" depends="os-init">
+    <property name="maven.opts" value=""/>
     <!-- Loads the properties from the effective maven settings -->
     <mkdir dir="${stack.output.dir}"/>
     <exec dir="${basedir}" executable="${mvn}" failonerror="true">
       <arg value="-Doutput=${stack.output.dir}/effective-settings.xml"/>
-      <arg value="${maven.opts}"/>
-      <arg value="help:effective-settings"/>
+      <arg line="${maven.opts} help:effective-settings"/>
     </exec>
     <xmlproperty file="${stack.output.dir}/effective-settings.xml" keeproot="false"/>
     <condition property="jboss501.home" value="${profiles.profile.properties.jboss501.home}">



More information about the jbossws-commits mailing list