-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
28 lines (22 loc) · 701 Bytes
/
build.xml
File metadata and controls
28 lines (22 loc) · 701 Bytes
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
<project>
<target name="clean">
<delete dir="build"/>
</target>
<target name="compile">
<mkdir dir="build/classes"/>
<javac srcdir="src" destdir="build/classes">
<classpath id="classpath" description="The default classpath.">
<pathelement path="${classpath}"/>
<fileset dir="libs">
<include name="*.jar"/>
</fileset>
</classpath>
</javac>
</target>
<target name="jar" depends="compile">
<mkdir dir="build/jar"/>
<jar destfile="build/jar/RainbowNLP.jar" basedir="build/classes">
<zipgroupfileset dir="libs" includes="*.jar" />
</jar>
</target>
</project>