stevel 2002/10/17 16:34:57
Modified: java build.xml
Log:
other than a tab to space fixup, the big change here is excluding
encoding/ser/castor when castor is not around.
Revision Changes Path
1.208 +4 -2 xml-axis/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/build.xml,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- build.xml 16 Oct 2002 21:52:17 -0000 1.207
+++ build.xml 17 Oct 2002 23:34:57 -0000 1.208
@@ -85,7 +85,7 @@
<exclude name="**/org/apache/axis/components/net/JSSE*.java"
unless="jsse.present"/>
<exclude name="**/org/apache/axis/components/image/JimiIO.java"
unless="jimi.present"/>
- <exclude name="**/org/apache/axis/components/image/MerlinIO.java"
unless="merlinio.present"/>
+ <exclude name="**/org/apache/axis/components/image/MerlinIO.java"
unless="merlinio.present"/>
<exclude name="**/org/apache/axis/attachments/AttachmentsImpl.java"
unless="attachments.present"/>
<exclude name="**/org/apache/axis/attachments/AttachmentPart.java"
unless="attachments.present"/>
<exclude name="**/org/apache/axis/attachments/AttachmentUtils.java"
unless="attachments.present"/>
@@ -124,6 +124,7 @@
<exclude name="**/javax/xml/rpc/handler/soap/*.java"
unless="attachments.present"/>
<exclude name="**/javax/xml/rpc/server/Servlet*.java"
unless="servlet.present"/>
<exclude name="**/*TestSuite.java" unless="junit.present"/>
+ <exclude name="**/org/apache/axis/encoding/ser/castor/*.java"
unless="castor.present"/>
</javac>
<copy file="${src.dir}/org/apache/axis/server/server-config.wsdd"
toDir="${build.dest}/org/apache/axis/server"/>
@@ -245,7 +246,8 @@
<!-- =================================================================== -->
<!-- Runs the JUnit package testcases -->
<!-- =================================================================== -->
- <target name="junit" depends="buildJunit" if="junit.present" >
+ <target name="junit" depends="buildJunit" if="junit.present"
+ description="run the junit tests">
<mkdir dir="${test.functional.reportdir}" />
<ant inheritAll="${ant.inheritAll}" inheritRefs="${ant.inheritRefs}"
dir="${axis.home}" antfile="buildTest.xml" target="junit">
<property name="junit.present" value="${junit.present}"/>