forked from dbamman/book-nlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
executable file
·49 lines (36 loc) · 1.26 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
<project name="narrative" default="all" basedir=".">
<import file="common.xml" />
<description>
Narrative build file
</description>
<target name="init">
<!-- Create the time stamp -->
<tstamp/>
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
</target>
<target name="all" depends="jar"/>
<target name="compile" depends="init" description="compile the source">
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}" debug="on" source="1.5" target="1.5" deprecation="on" excludes="**/*.xml">
<classpath>
<fileset dir="lib">
<include name="**/*.jar" />
</fileset>
</classpath>
</javac>
</target>
<target name="jar" depends="compile" description="generate the book-nlp JAR" >
<!-- Create the distribution directory -->
<!-- Uncomment Exclude when building sandbox core for standalone modules
<exclude name="**/hibernate.cfg.xml"/>
<exclude name="ehcache.xml"/> -->
<antcall target="create-jar">
<param name="jarfile" value="book-nlp.jar" />
</antcall>
</target>
<target name="clean" description="clean up">
<!-- Delete the ${build} and ${dist} directory trees -->
<delete dir="${build}"/>
</target>
</project>