You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by jc...@apache.org on 2010/09/27 20:17:32 UTC

svn commit: r1001851 - /incubator/river/jtsk/trunk/common.xml

Author: jcosters
Date: Mon Sep 27 18:17:32 2010
New Revision: 1001851

URL: http://svn.apache.org/viewvc?rev=1001851&view=rev
Log:
RIVER-353: set fork=true on <java> task when executing tools classes during build

Modified:
    incubator/river/jtsk/trunk/common.xml

Modified: incubator/river/jtsk/trunk/common.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/common.xml?rev=1001851&r1=1001850&r2=1001851&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/common.xml (original)
+++ incubator/river/jtsk/trunk/common.xml Mon Sep 27 18:17:32 2010
@@ -202,7 +202,7 @@
         <element name="plg-elements" implicit="true"/>
         <sequential>
             <java classname="com.sun.jini.tool.PreferredListGen"
-			      failonerror="true" >
+                    fork="true" failonerror="true" >
                 <plg-elements/>
             </java>
         </sequential>
@@ -214,8 +214,8 @@
         <element name="cd-elements" implicit="yes" />
         <sequential>
             <java classname="com.sun.jini.tool.ClassDep" 
-                  failonerror="true" logError="true"
-                  output="@{output}">
+                  fork="true" failonerror="true"
+                  logError="true" output="@{output}">
                 <classpath refid="@{classpathref}"/>
                 <cd-elements />
             </java>
@@ -227,7 +227,7 @@
         <element name="jw-elements" implicit="yes" />
         <sequential>
             <java classname="com.sun.jini.tool.JarWrapper"
-                    failonerror="true">
+                    fork="true" failonerror="true">
                 <classpath refid="@{classpathref}"/>
                 <jw-elements />
             </java>