You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2005/02/04 02:56:05 UTC

svn commit: r151289 - forrest/trunk/main/build.xml

Author: crossley
Date: Thu Feb  3 17:56:05 2005
New Revision: 151289

URL: http://svn.apache.org/viewcvs?view=rev&rev=151289
Log:
For the "test" target, re-arrange the build order so that it does "testseed" first
and hence calls "init" at the start.

Modified:
    forrest/trunk/main/build.xml

Modified: forrest/trunk/main/build.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/main/build.xml?view=diff&r1=151288&r2=151289
==============================================================================
--- forrest/trunk/main/build.xml (original)
+++ forrest/trunk/main/build.xml Thu Feb  3 17:56:05 2005
@@ -257,7 +257,7 @@
   <!--        Test targets                -->
   <!-- ================================== -->
   <target name="test" 
-          depends="testPlugins, testseed" 
+          depends="testseed, testPlugins" 
           description="Test that the features are okay before committing."/>
   
   <target name="testPlugins"