| 6 |
6 |
<import file="../binaries/ant/utilities.xml"/>
|
| 7 |
7 |
<property name="src" location="src"/>
|
| 8 |
8 |
<property name="src-test" location="src-test"/>
|
| 9 |
|
<property name="lib" location="../_fwAndami/lib"/>
|
| 10 |
9 |
<property name="build" location="bin"/>
|
| 11 |
10 |
<property name="build-test" location="bin-test"/>
|
| 12 |
11 |
<property name="dist" location="dist"/>
|
| ... | ... | |
| 26 |
25 |
</target>
|
| 27 |
26 |
|
| 28 |
27 |
<target name="dist" description="generate the distribution"
|
| 29 |
|
depends="create-jar,copy-libs,copy-data-files,move-to-andami" />
|
|
28 |
depends="create-jar,copy-data-files,move-to-andami" />
|
| 30 |
29 |
|
| 31 |
30 |
<target name="batch-build"
|
| 32 |
31 |
description="compile the sources, create the jar file"
|
| 33 |
|
depends="init,compile,create-jar,copy-libs,copy-data-files,move-to-andami">
|
|
32 |
depends="init,compile,create-jar,copy-data-files,move-to-andami">
|
| 34 |
33 |
</target>
|
| 35 |
34 |
|
| 36 |
35 |
<target name="compile" description="compile the source" >
|
| ... | ... | |
| 42 |
41 |
/>
|
| 43 |
42 |
</target>
|
| 44 |
43 |
|
| 45 |
|
<target name="copy-libs">
|
| 46 |
|
<copy todir="${dist}">
|
| 47 |
|
<fileset dir="lib" includes="*.jar"/>
|
| 48 |
|
</copy>
|
| 49 |
|
</target>
|
| 50 |
|
|
| 51 |
44 |
<target name="copy-data-files" depends="make-package-info">
|
| 52 |
45 |
<copy file="config/config.xml" todir="${dist}"/>
|
| 53 |
46 |
<copy file="build.number" todir="${dist}"/>
|
| 54 |
|
-
|