sebb 2003/12/18 10:18:47 Modified: . build.xml Log: Add 3 new targets for use by Gump Revision Changes Path 1.152 +22 -3 jakarta-jmeter/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-jmeter/build.xml,v retrieving revision 1.151 retrieving revision 1.152 diff -u -r1.151 -r1.152 --- build.xml 17 Dec 2003 14:07:55 -0000 1.151 +++ build.xml 18 Dec 2003 18:18:47 -0000 1.152 @@ -680,6 +680,25 @@ <antcall target="_pack-source"/> </target> + <!-- + Additional gump targets. The intention is to move towards separate build, test + and documentation projects for the jmeter module. + --> + <target name="gump-build" depends="assume-libs-present,clean,install,docs-printable" description="Build JMeter"> + <property name="dist.name" value="jakarta-jmeter-${version}"/> + <antcall target="_pack-binaries"/> + <antcall target="_pack-libraries"/> + <antcall target="_pack-source"/> + </target> + + <target name="gump-test" depends="_test" description="Test JMeter"> + </target> + + <target name="gump-javadoc" depends="docs-api" description="Create JMeter javadocs"> + <property name="dist.name" value="jakarta-jmeter-${version}"/> + <antcall target="_pack-javadoc"/> + </target> + <target name="dist-src" depends="init-version" description="Create the source distribution packages."> <property name="dist.name" value="jakarta-jmeter-${version}"/> <antcall target="_pack-source"/>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]