rubys 2003/01/24 18:25:40
Modified: . build.xml
Log:
Add check target to build.xml
Revision Changes Path
1.16 +9 -1 jakarta-gump/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-gump/build.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- build.xml 16 Jan 2003 17:37:11 -0000 1.15
+++ build.xml 25 Jan 2003 02:25:40 -0000 1.16
@@ -188,8 +188,16 @@
<ant dir="site"/>
</target>
+ <!-- Check to see if all of the local packages are installed -->
+ <target name="check" depends="compile">
+ <property name="onlineflag" value="-online"/>
+ <java classname="LocalCheck" fork="yes" classpath="jenny.jar">
+ <arg value="${workspace}"/>
+ </java>
+ </target>
+
<!-- Do everything -->
- <target name="all" depends="scripts,javadocs,pubdocs,site"/>
+ <target name="all" depends="scripts,javadocs,pubdocs,site,check"/>
<!-- Remove all outputs and intermediate results -->
<target name="clean">
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>