dims 2003/07/29 07:44:43
Modified: java build.xml
Log:
GUMP: compile and run tests before building javadocs. (I think Gump is just running
the junit tests and not the functional-tests)
Revision Changes Path
1.235 +5 -4 xml-axis/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/build.xml,v
retrieving revision 1.234
retrieving revision 1.235
diff -u -r1.234 -r1.235
--- build.xml 20 Jul 2003 23:58:37 -0000 1.234
+++ build.xml 29 Jul 2003 14:44:43 -0000 1.235
@@ -357,7 +357,7 @@
<!-- =================================================================== -->
<!-- Build/Test EVERYTHING from scratch! -->
<!-- =================================================================== -->
- <target name="all" depends="dist, junit, functional-tests"
+ <target name="all" depends="junit, functional-tests, dist"
description="do everything: distribution build and functional tests"
/>
@@ -399,20 +399,20 @@
<!-- Creates the binary distribution -->
<!-- =================================================================== -->
<target name="javadocsdist" depends="javadocs" unless="javadoc.notrequired">
- <mkdir dir="${dist.dir}/docs"/>
- <mkdir dir="${dist.dir}/docs/apiDocs"/>
<copy todir="${dist.dir}/docs/apiDocs">
<fileset dir="${build.javadocs}"/>
</copy>
</target>
- <target name="dist" depends="compile, javadocsdist, samples, junit"
+ <target name="dist" depends="compile, samples, junit"
description="create the full binary distribution">
<mkdir dir="${dist.dir}"/>
<mkdir dir="${dist.dir}/lib"/>
<mkdir dir="${dist.dir}/samples"/>
<mkdir dir="${dist.dir}/webapps/axis"/>
<mkdir dir="${dist.dir}/xmls"/>
+ <mkdir dir="${dist.dir}/docs"/>
+ <mkdir dir="${dist.dir}/docs/apiDocs"/>
<copy todir="${dist.dir}/lib">
<fileset dir="${build.lib}"/>
@@ -446,6 +446,7 @@
<copy todir="${dist.dir}/xmls">
<fileset dir="xmls"/>
</copy>
+ <antcall target="javadocsdist"/>
</target>
<!-- =================================================================== -->