rubys 2003/02/18 08:59:49
Modified: . build.xml
Log:
Implement a suggestion received offline by Paul Hammant... make the
name of the target used to verify project definions (which
incidentally has a useful byproduct of producing a unified merge.xml)
more obvious to the casual contributor to gump.
Revision Changes Path
1.18 +6 -3 jakarta-gump/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-gump/build.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- build.xml 18 Feb 2003 16:21:57 -0000 1.17
+++ build.xml 18 Feb 2003 16:59:49 -0000 1.18
@@ -84,9 +84,7 @@
</target>
<!-- Merge the xml sources, resolving references -->
- <target name="gen" depends="compile" unless="uptodate"
- description="Verify the project definitions">
-
+ <target name="gen" depends="compile" unless="uptodate">
<property name="onlineflag" value="-online"/>
<java classname="Jenny" fork="yes" failonerror="true" classpath="jenny.jar">
<jvmarg value="-Dhttp.proxyHost=${http.proxyHost}"/>
@@ -95,6 +93,11 @@
<arg value="${onlineflag}"/>
</java>
</target>
+
+ <!-- Alias of 'gen' target, used to verify correctness and completeness
+ of a project definition -->
+ <target name="verify" depends="gen"
+ description="Verify the project definitions"/>
<!-- Extract the info necessary to produce the update script -->
<target name="update" depends="gen">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]