seibert 2002/08/07 12:43:41
Modified: java build.xml
Log:
Add in the stub for my tasks (should be benign)
Revision Changes Path
1.167 +4 -3 xml-axis/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/build.xml,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- build.xml 4 Aug 2002 03:05:41 -0000 1.166
+++ build.xml 7 Aug 2002 19:43:41 -0000 1.167
@@ -96,9 +96,6 @@
<exclude name="**/org/apache/axis/transport/http/AdminServlet.java" unless="servlet.present"/>
<exclude name="**/org/apache/axis/transport/http/AxisHttpSession.java" unless="servlet.present"/>
<exclude name="**/org/apache/axis/transport/http/AxisServlet.java" unless="servlet.present"/>
- <exclude name="**/org/apache/axis/transport/http/AxisServletBase.java" unless="servlet.present"/>
- <exclude name="**/org/apache/axis/transport/http/ServletEndpointContextImpl.java"
unless="servlet.present"/>
- <exclude name="**/org/apache/axis/security/servlet/*.java" unless="servlet.present"/>
<exclude name="**/org/apache/axis/transport/http/CommonsHTTPSender.java" unless="commons-httpclient.present"/>
<exclude name="**/org/apache/axis/server/JNDIAxisServerFactory.java" unless="servlet.present"/>
<exclude name="**/org/apache/axis/security/servlet/*" unless="servlet.present"/>
@@ -145,6 +142,10 @@
<copy file="${commons-logging.jar}" toDir="${build.lib}"/>
<copy file="${log4j-core.jar}" toDir="${build.lib}"/>
<copy file="${tt-bytecode.jar}" toDir="${build.lib}"/>
+
+<!-- stub in my task generations -->
+ <ant antfile="buildPreTestTaskdefs.xml" />
+
<antcall target="post-compile"/>
</target>
|