-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbuild.xml
121 lines (121 loc) · 6.32 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- WARNING: Eclipse auto-generated file.
Any modifications will be overwritten.
To include a user specific buildfile here, simply create one in the same
directory with the processing instruction <?eclipse.ant.import?>
as the first entry and export the buildfile again. --><project basedir="." default="build" name="UDepLambda">
<property environment="env"/>
<property name="ECLIPSE_HOME" value="../../../../Applications/Eclipse.app/Contents/Eclipse/"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.8"/>
<property name="source" value="1.8"/>
<path id="JUnit 4.libraryclasspath">
<pathelement location="${ECLIPSE_HOME}plugins/org.junit_4.12.0.v201504281640/junit.jar"/>
<pathelement location="${ECLIPSE_HOME}plugins/org.hamcrest.core_1.3.0.v201303031735.jar"/>
</path>
<path id="UDepLambda.classpath">
<pathelement location="bin"/>
<pathelement location="lib/stanford-tregex-3.5.1.jar"/>
<pathelement location="lib/protobuf-java-2.6.1.jar"/>
<pathelement location="lib/gson-2.2.2.jar"/>
<pathelement location="lib/maltparser-1.8.1.jar"/>
<pathelement location="lib/liblinear-1.8.jar"/>
<pathelement location="lib/log4j-1.2.17.jar"/>
<pathelement location="lib/whatswrong-0.2.4.jar"/>
<pathelement location="lib/ejml-0.25.jar"/>
<pathelement location="lib/batik-ext-1.8.jar"/>
<pathelement location="lib/batik-svggen-1.8.jar"/>
<pathelement location="lib/batik-xml-1.8.jar"/>
<pathelement location="lib/batik-util-1.8.jar"/>
<pathelement location="lib/batik-awt-util-1.8.jar"/>
<pathelement location="lib/batik-dom-1.8.jar"/>
<pathelement location="lib/javautils-lib-3.0.jar"/>
<pathelement location="lib/spf-2.0.jar"/>
<pathelement location="lib/spf-javautils.jar"/>
<pathelement location="lib/stanford-corenlp-3.6.0.jar"/>
<pathelement location="lib/junit-4.11.jar"/>
<path refid="JUnit 4.libraryclasspath"/>
<pathelement location="lib/stanford-corenlp-3.6.0-models-spanish.jar"/>
<pathelement location="lib/stanford-corenlp-3.6.0-models.jar"/>
<pathelement location="lib/caffeine-1.1.0.jar"/>
<pathelement location="lib/commons-codec-1.6.jar"/>
<pathelement location="lib/commons-csv-1.0.jar"/>
<pathelement location="lib/commons-io-1.3.2.jar"/>
<pathelement location="lib/commons-lang3-3.3.2.jar"/>
<pathelement location="lib/easyccg.jar"/>
<pathelement location="lib/easysrl.jar"/>
<pathelement location="lib/guava-19.0.jar"/>
<pathelement location="lib/httpclient-4.2.6.jar"/>
<pathelement location="lib/httpclient-cache-4.2.6.jar"/>
<pathelement location="lib/httpcore-4.2.5.jar"/>
<pathelement location="lib/icu4j_3_4.jar"/>
<pathelement location="lib/jackson-annotations-2.3.0.jar"/>
<pathelement location="lib/jackson-core-2.3.3.jar"/>
<pathelement location="lib/jackson-databind-2.3.3.jar"/>
<pathelement location="lib/jcl-over-slf4j-1.7.6.jar"/>
<pathelement location="lib/jena-arq-2.13.0.jar"/>
<pathelement location="lib/jena-core-2.13.0.jar"/>
<pathelement location="lib/jena-iri-1.1.2.jar"/>
<pathelement location="lib/jena-tdb-1.1.2.jar"/>
<pathelement location="lib/jopt-simple-4.4.jar"/>
<pathelement location="lib/jsonld-java-0.5.1.jar"/>
<pathelement location="lib/libthrift-0.9.2.jar"/>
<pathelement location="lib/slf4j-api-1.7.6.jar"/>
<pathelement location="lib/slf4j-log4j12-1.7.6.jar"/>
<pathelement location="lib/virt_jena2.jar"/>
<pathelement location="lib/virtjdbc4.jar"/>
<pathelement location="lib/xercesImpl-2.11.0.jar"/>
<pathelement location="lib/xml-apis-1.4.01.jar"/>
<pathelement location="lib/edu.mit.jwi_2.3.0.jar"/>
<pathelement location="lib/jewelcli-0.7.6.jar"/>
<pathelement location="lib/mtj-1.0-snapshot.jar"/>
<pathelement location="lib/jregex1.2_01-src.jar"/>
<pathelement location="lib/fastutil-6.5.15.jar"/>
<pathelement location="lib/lucene-analyzers-common-6.3.0.jar"/>
<pathelement location="lib/lucene-core-6.3.0.jar"/>
<pathelement location="lib/graph-parser.jar"/>
</path>
<target name="init">
<mkdir dir="bin"/>
<copy includeemptydirs="false" todir="bin">
<fileset dir="src">
<exclude name="**/*.launch"/>
<exclude name="**/*.java"/>
</fileset>
</copy>
<copy includeemptydirs="false" todir="bin">
<fileset dir="test">
<exclude name="**/*.launch"/>
<exclude name="**/*.java"/>
</fileset>
</copy>
</target>
<target name="clean">
<delete dir="bin"/>
</target>
<target depends="clean" name="cleanall"/>
<target depends="build-subprojects,build-project" name="build"/>
<target name="build-subprojects"/>
<target depends="init" name="build-project">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}">
<src path="src"/>
<src path="test"/>
<classpath refid="UDepLambda.classpath"/>
</javac>
</target>
<target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
<target description="copy Eclipse compiler jars to ant lib directory" name="init-eclipse-compiler">
<copy todir="${ant.library.dir}">
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
</copy>
<unzip dest="${ant.library.dir}">
<patternset includes="jdtCompilerAdapter.jar"/>
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar"/>
</unzip>
</target>
<target description="compile project with Eclipse compiler" name="build-eclipse-compiler">
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
<antcall target="build"/>
</target>
</project>