rubys 02/03/11 07:38:24
Modified: java build.xml
Log:
Split the jaxrpc interfaces out into a separate jar
Revision Changes Path
1.121 +7 -1 xml-axis/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/build.xml,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- build.xml 11 Mar 2002 05:04:00 -0000 1.120
+++ build.xml 11 Mar 2002 15:38:24 -0000 1.121
@@ -65,6 +65,8 @@
<property name="Name" value="Axis"/>
<property name="year" value="2001"/>
+ <property name="jaxrpc" value="jaxrpc"/>
+
<!-- debug flag for ant javac, values are "on" and "off" -->
<property name="debug" value="off"/>
@@ -265,9 +267,11 @@
<jar jarfile="${build.lib}/${name}.jar" basedir="${build.dest}" >
<include name="org/**" />
- <include name="javax/**"/>
<include name="log4j.properties"/>
</jar>
+ <jar jarfile="${build.lib}/${jaxrpc}.jar" basedir="${build.dest}" >
+ <include name="javax/**"/>
+ </jar>
<copy file="${wsdl4j.jar}" toDir="${build.lib}"/>
<copy file="${commons-logging.jar}" toDir="${build.lib}"/>
<copy file="${log4j-core.jar}" toDir="${build.lib}"/>
@@ -291,6 +295,7 @@
debug="${debug}">
<classpath>
<pathelement location="${build.lib}/${name}.jar"/>
+ <pathelement location="${build.lib}/${jaxrpc}.jar"/>
<path refid="classpath"/>
</classpath>
<include name="samples/**/*.java" />
@@ -322,6 +327,7 @@
debug="${debug}">
<classpath>
<pathelement location="${build.lib}/${name}.jar"/>
+ <pathelement location="${build.lib}/${jaxrpc}.jar"/>
<path refid="classpath"/>
</classpath>
<include name="test/**/*.java" />