You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2013/09/26 17:16:57 UTC

svn commit: r1526560 - /ofbiz/trunk/build.xml

Author: jleroux
Date: Thu Sep 26 15:16:57 2013
New Revision: 1526560

URL: http://svn.apache.org/r1526560
Log:
Fixes <<Error to run "ant start-debug" >> https://issues.apache.org/jira/browse/OFBIZ-5329

Modified:
    ofbiz/trunk/build.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1526560&r1=1526559&r2=1526560&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Thu Sep 26 15:16:57 2013
@@ -423,7 +423,7 @@ under the License.
             <jvmarg value="${memory.initial.param}"/>
             <jvmarg value="${memory.max.param}"/>
             <jvmarg value="${memory.maxpermsize.param}"/>
-            <arg value="start-batch"/>
+            <arg value="start"/>
             <arg value="-portoffset=${portoffset}"/>
         </java>
     </target>
@@ -437,7 +437,7 @@ under the License.
             <jvmarg value="-Djava.compiler=NONE"/>
             <jvmarg value="-Xdebug"/>
             <jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8091"/>
-            <arg value="start-debug"/>
+            <arg value="start"/>
             <arg value="-portoffset=${portoffset}"/>
         </java>
     </target>