Browse Source

exclude the helper files for the testcases from the binary

distribution, we don't ship the test sources there either.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268114 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 24 years ago
parent
commit
2a3982483a
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      build.xml

+ 4
- 2
build.xml View File

@@ -16,7 +16,7 @@


<property name="ant.home" value="."/> <property name="ant.home" value="."/>
<property name="src.bin.dir" value="src/bin"/> <property name="src.bin.dir" value="src/bin"/>
<property name="src.etc.dir" value="src/bin"/>
<property name="src.etc.dir" value="src/etc"/>
<property name="src.dir" value="src/main"/> <property name="src.dir" value="src/main"/>
<property name="src.tests.dir" value="src/testcases"/> <property name="src.tests.dir" value="src/testcases"/>
<property name="docs.dir" value="docs"/> <property name="docs.dir" value="docs"/>
@@ -470,7 +470,9 @@
</copy> </copy>


<copy todir="${ant.bindist.dir}/etc"> <copy todir="${ant.bindist.dir}/etc">
<fileset dir="${src.etc.dir}"/>
<fileset dir="${src.etc.dir}">
<exclude name="testcases/**" />
</fileset>
</copy> </copy>


<copy todir="${ant.bindist.dir}/bin"> <copy todir="${ant.bindist.dir}/bin">


Loading…
Cancel
Save