stevel 2002/06/28 00:29:30
Modified: java build.xml
Log:
minor build.xml rework; no changes in functionality. note the definition of
axis.home; this is intended to be a property to pass down to sub projects to point
them to the base dir
Revision Changes Path
1.154 +11 -9 xml-axis/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-axis/java/build.xml,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- build.xml 26 Jun 2002 21:20:35 -0000 1.153
+++ build.xml 28 Jun 2002 07:29:29 -0000 1.154
@@ -71,24 +71,26 @@
<!-- debug flag for ant javac, values are "on" and "off" -->
<property name="debug" value="on"/>
-
<property name="deprecation" value="true"/>
+ <!-- set up directories -->
+ <property name="axis.home" location="."/>
<property name="src.dir" location="./src"/>
<property name="docs.dir" location="./docs"/>
<property name="samples.dir" location="./samples"/>
<property name="test.dir" location="./test"/>
<property name="lib.dir" location="./lib"/>
+ <property name="axis.lib.dir" location="./lib"/>
- <property name="wsdl4j.jar" location="lib/wsdl4j.jar"/>
- <property name="jsse.jar" location="lib/jsse.jar"/>
- <property name="commons-logging.jar" location="lib/commons-logging.jar"/>
- <property name="log4j-core.jar" location="lib/log4j-1.2.4.jar"/>
- <property name="tt-bytecode.jar" location="lib/tt-bytecode.jar"/>
+ <property name="wsdl4j.jar" location="${lib.dir}/wsdl4j.jar"/>
+ <property name="jsse.jar" location="${lib.dir}/jsse.jar"/>
+ <property name="commons-logging.jar" location="${lib.dir}/commons-logging.jar"/>
+ <property name="log4j-core.jar" location="${lib.dir}/log4j-1.2.4.jar"/>
+ <property name="tt-bytecode.jar" location="${lib.dir}/tt-bytecode.jar"/>
<property name="regexp.jar" location="test/lib/jakarta-oro-2.0.5.jar"/>
- <property name="junit.jar" location="lib/junit.jar"/>
+ <property name="junit.jar" location="${lib.dir}/junit.jar"/>
<property name="packages" value="org.*,javax.*"/>
@@ -108,7 +110,6 @@
<property name="test.functional.usefile" value="true"/>
<property name="tools.jar" location="${java.home}/../lib/tools.jar"/>
- <property name="axis.lib.dir" location="lib"/>
<!-- Place Holder for proxy settings -->
<property name="http.proxyHost" value=""/>
@@ -127,13 +128,14 @@
<pathelement location="${j2ee.jar}"/>
<pathelement location="${jsse.jar}"/>
<pathelement location="${tools.jar}"/>
- <fileset dir="${axis.lib.dir}">
+ <fileset dir="${lib.dir}">
<include name="*.jar"/>
</fileset>
<pathelement path="${java.class.path}"/>
</path>
<target name="setenv">
+ <mkdir dir="${build.dir}"/>
<mkdir dir="${build.dest}"/>
<mkdir dir="${build.lib}"/>