-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.xml
More file actions
69 lines (58 loc) · 2.64 KB
/
build.xml
File metadata and controls
69 lines (58 loc) · 2.64 KB
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
<project name="StanfordCoreNLPXMLServer">
<property name="src.dir" value="src"/>
<property name="build.dir" value="build"/>
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="jar.dir" value="${build.dir}/jar"/>
<property name="lib.dir" value="lib"/>
<property name="main-class" value="StanfordCoreNLPXMLServer"/>
<property name="port" value=""/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<target name="clean" description="Delete all generated files.">
<delete dir="${build.dir}"/>
</target>
<target name="libs" depends="simple, stanford" description="Download and compile all required 3rd party libraries." />
<target name="simple">
<get src="http://downloads.sourceforge.net/project/simpleweb/simpleweb/5.1.6/simple-5.1.6.zip" dest="simple-5.1.6.zip" />
<unzip src="simple-5.1.6.zip" dest="." />
<ant dir="simple-5.1.6" target="build" />
<move file="simple-5.1.6/jar/simple-5.1.6.jar" todir="${lib.dir}" />
<delete dir="simple-5.1.6" />
<delete file="simple-5.1.6.zip" />
</target>
<target name="stanford">
<get src="http://nlp.stanford.edu/software/stanford-corenlp-full-2013-06-20.zip" dest="stanford-corenlp-full-2013-06-20.zip" />
<unzip src="stanford-corenlp-full-2013-06-20.zip" dest="." />
<move todir="${lib.dir}">
<fileset dir="stanford-corenlp-full-2013-06-20">
<include name="**/*.jar" />
</fileset>
</move>
<delete dir="stanford-corenlp-full-2013-06-20" />
<delete file="stanford-corenlp-full-2013-06-20.zip" />
</target>
<target name="compile">
<mkdir dir="${classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${classes.dir}" includeantruntime="false" classpathref="classpath" />
</target>
<target name="jar" depends="compile">
<mkdir dir="${jar.dir}"/>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
<zipgroupfileset dir="${lib.dir}" includes="**/*.jar"/>
</jar>
</target>
<target name="run" depends="jar">
<java jar="${jar.dir}/${ant.project.name}.jar" fork="true" maxmemory="1024m">
<arg value="${port}" />
</java>
</target>
<target name="test">
<java jar="${jar.dir}/${ant.project.name}.jar" fork="true" timeout="30000" maxmemory="1024m">
<arg value="${port}" />
</java>
</target>
</project>