Author: rgardler
Date: Sat Feb 27 00:56:46 2010
New Revision: 916889

URL: http://svn.apache.org/viewvc?rev=916889&view=rev
Log:
Allow multiple arguments to be passed from the command line

Modified:
    incubator/wookie/trunk/ant/ivy-java-common.xml

Modified: incubator/wookie/trunk/ant/ivy-java-common.xml
URL: 
http://svn.apache.org/viewvc/incubator/wookie/trunk/ant/ivy-java-common.xml?rev=916889&r1=916888&r2=916889&view=diff
==============================================================================
--- incubator/wookie/trunk/ant/ivy-java-common.xml (original)
+++ incubator/wookie/trunk/ant/ivy-java-common.xml Sat Feb 27 00:56:46 2010
@@ -106,12 +106,12 @@
     <target name="post-compile-core" description="Run after compile-core. 
Intended to be overridden if your project needs any post compile processing"/>
        
     <target name="run" depends="version, compile-core" description="--> 
compile and run the project">
-        <java classname="${main.class.name}"
+               <java classname="${main.class.name}"
                classpathref="run.path.id"
             fork="true"
             failonerror="true">
             <jvmarg line="${jvmargs}"/>
-               <arg value="${run.args}"/>
+               <arg line="${run.args}"/>
         </java>        
     </target>
     


Reply via email to