Browse Source

Place dist in the same place as the other jakarta projects.

Restore original name of ant.jar as it is used in the ant batch and
shell scripts, as well as in numerous other build.* files.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267580 13f79535-47bb-0310-9956-ffa450edef68
master
Sam Ruby 25 years ago
parent
commit
ad0ebdf6e0
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      build.xml

+ 3
- 3
build.xml View File

@@ -19,7 +19,7 @@
<property name="build.dir" value="build"/>
<property name="build.classes" value="build/classes"/>
<property name="build.javadocs" value="build/javadocs"/>
<property name="dist.dir" value="dist"/>
<property name="dist.dir" value="../dist/ant"/>
<property name="classpath" value="lib/xml.jar"/>
<property name="packages" value="org.apache.tools.ant.*"/>
@@ -112,7 +112,7 @@
<copyfile src="TODO" dest="${dist.dir}/TODO"/>
<copyfile src="LICENSE" dest="${dist.dir}/LICENSE"/>

<jar jarfile="${name}-${version}.jar" basedir="${dist.dir}" items="."/>
<jar jarfile="${name}.jar" basedir="${dist.dir}" items="."/>
</target>

<!-- =================================================================== -->
@@ -129,7 +129,7 @@
<target name="total-clean" depends="clean">
<deltree dir="${bin.dir}"/>
<delete file="${lib.dir}/${name}.jar"/>
<delete file="${name}-${version}.jar"/>
<delete file="${name}.jar"/>
</target>

<!-- in progress ! (may not work) -->


Loading…
Cancel
Save