-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.xml
executable file
·63 lines (52 loc) · 2 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<project name="wyc" default="build" xmlns:artifact="urn:maven-ant">
<!-- ================================================================== -->
<!-- Configuration -->
<!-- ================================================================== -->
<import file="config.xml"/>
<!-- ================================================================== -->
<!-- Setup -->
<!-- ================================================================== -->
<target name="setup">
<mkdir dir="${JAR_DIR}"/>
<mkdir dir="${CLASS_DIR}"/>
</target>
<!-- ================================================================== -->
<!-- Compile -->
<!-- ================================================================== -->
<target name="compile" depends="setup">
<javac includeantruntime="false"
target="${JAVA_VERSION}"
srcdir="${JAVA_DIR}"
destdir="${CLASS_DIR}">
<classpath>
<path refid="MAVEN_DEPS"/>
</classpath>
</javac>
</target>
<!-- ================================================================== -->
<!-- Build -->
<!-- ================================================================== -->
<target name="build" depends="compile">
<jar destfile="${CLASS_JAR}">
<fileset dir="${CLASS_DIR}" includes="**/*.class"/>
</jar>
</target>
<!-- ================================================================== -->
<!-- Dist -->
<!-- ================================================================== -->
<target name="dist" depends="build">
<!-- build sources jar -->
<jar destfile="${JAVA_JAR}">
<fileset dir="${JAVA_DIR}" includes="**/*.java"/>
</jar>
</target>
<!-- ================================================================== -->
<!-- Clean -->
<!-- ================================================================== -->
<target name="clean">
<delete includeEmptyDirs="true" failonerror="false">
<fileset dir="${BIN_DIR}"/>
<fileset dir="." includes="**/*.wyil,**/*.class"/>
</delete>
</target>
</project>