-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.xml
32 lines (27 loc) · 834 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<project name="MyProject" default="dist" basedir=".">
<description>
simple example build file
</description>
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<target name="hello-ant">
<echo>Hello Apache Ant</echo>
</target>
<target name="init">
<echo>init</echo>
</target>
<target name="compile" depends="init"
description="compile the source">
<echo>compile</echo>
</target>
<target name="dist" depends="compile"
description="generate the distribution">
<echo>dist</echo>
</target>
<target name="clean"
description="clean up">
<echo>clean</echo>
</target>
</project>