-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.xml
executable file
·75 lines (65 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
<project name="amr" default="dist" basedir=".">
<description>
Semantic parsing for AMR build file
</description>
<!-- set global properties for this build -->
<property file="build.properties" />
<property name="build" location="build" />
<property name="build.src" location="build.src" />
<property name="dist" location="dist" />
<property name="lib" location="lib" />
<path id="classpath">
<fileset dir="${lib}">
<include name="*.jar" />
</fileset>
<fileset dir="${lib}/nerdep">
<include name="*.jar" />
</fileset>
</path>
<target name="init">
<!-- Create the time stamp -->
<tstamp />
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}" />
<mkdir dir="${build.src}" />
<copy todir="${build.src}" >
<fileset dir="${src.amr}" includes="**/*.java" />
</copy>
</target>
<target name="compile" depends="init" description="compile the source ">
<!-- Compile the java code from ${src} into ${build} -->
<javac debug="true" srcdir="${build.src}" destdir="${build}" includeantruntime="false">
<classpath refid="classpath" />
<compilerarg value="-Xlint"/>
<compilerarg value="-Xlint:-serial"/>
<compilerarg value="-Xlint:-auxiliaryclass"/>
<compilerarg value="-Xlint:-overloads"/>
</javac>
</target>
<target name="dist" depends="compile" description="generate the distribution">
<!-- Create the distribution directory -->
<mkdir dir="${dist}" />
<manifestclasspath property="myprogram.manifest.classpath" jarfile="${dist}/${ant.project.name}-${version}.jar">
<classpath>
<fileset dir="${lib}" includes="*.jar" />
<fileset dir="${lib}/nerdep" includes="*.jar" />
</classpath>
</manifestclasspath>
<delete file="MANIFEST.MF" />
<manifest file="MANIFEST.MF">
<attribute name="Main-Class" value="${mainclass}" />
<attribute name="Class-Path" value="${myprogram.manifest.classpath}" />
</manifest>
<jar jarfile="${dist}/${ant.project.name}-${version}.jar" manifest="MANIFEST.MF">
<fileset dir="${build}" />
<fileset dir="${build.src}" />
</jar>
<delete file="MANIFEST.MF" />
</target>
<target name="clean" description="clean up">
<!-- Delete the ${build} and ${dist} directory trees -->
<delete dir="${build}" />
<delete dir="${build.src}" />
<delete dir="${dist}" />
</target>
</project>