metasim 00/11/14 11:47:51
Modified: src/antidote build.xml
Log:
Added TargetMonitor widget which gives a better indication of what targets
will
be built if a build is launched. Also fixed a few buglets in the
PropertyEditor.
Revision Changes Path
1.5 +5 -4 jakarta-ant/src/antidote/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/src/antidote/build.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- build.xml 2000/11/14 17:21:20 1.4
+++ build.xml 2000/11/14 19:47:49 1.5
@@ -15,12 +15,12 @@
<property name="src.etc.dir" value="etc"/>
<property name="src.dir" value="."/>
<property name="docs.dir" value="docs"/>
- <property name="build.dir" value="../../../build/ant"/>
- <property name="lib.dir" value="${build.dir}/lib"/>
- <property name="bin.dir" value="${build.dir}/bin"/>
+ <property name="build.dir" value="../../../build/antidote"/>
+ <property name="ant.build.dir" value="../../../build/ant"/>
+ <property name="lib.dir" value="${ant.build.dir}/lib"/>
+ <property name="bin.dir" value="${ant.build.dir}/bin"/>
<property name="build.classes" value="${build.dir}/classes"/>
<property name="build.javadocs" value="${build.dir}/javadocs"/>
- <property name="build.tests" value="${build.dir}/testcases"/>
<property name="ant.dist.dir" value="../../../dist/ant"/>
<path id="classpath">
@@ -48,6 +48,7 @@
<!-- ===================================================================
-->
<target name="prepare">
<mkdir dir="${build.dir}"/>
+ <mkdir dir="${ant.build.dir}"/>
<tstamp />
</target>