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:12:37 UTC

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

Author: crossley
Date: Thu Feb  3 17:12:34 2005
New Revision: 151281

URL: http://svn.apache.org/viewcvs?view=rev&rev=151281
Log:
Use the "jar" target for the main project used by Gump. Later add other projects
to our gump descriptor to handle other build aspects, e.g. "test".

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=151280&r2=151281
==============================================================================
--- forrest/trunk/main/build.xml (original)
+++ forrest/trunk/main/build.xml Thu Feb  3 17:12:34 2005
@@ -289,14 +289,14 @@
       <property name="project.home" value="${test.dir}"/>
     </ant>
   </target>
-  
-  <!-- ================================== -->
-  <!--        Target used by Gump         -->
-  <!-- ================================== -->
-  <target  name="gump" description="Target used by Gump">
-    <!--<antcall target="test"/>-->
-    <antcall target="test"/>
-    <antcall target="webapp"/>
+
+  <!-- ==================================================
+       Target used by Gump for the main "forrest" project.
+       Our gump descriptor also has other projects for other aspects of forrest build:
+       http://cvs.apache.org/viewcvs.cgi/gump/project/forrest.xml
+       ================================================== -->
+  <target  name="gump" description="Target used by Gump: forrest">
+    <antcall target="jar"/>
   </target>
   
   <!-- =================================================================== -->