forked from chagge/THUTag-1
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.xml
171 lines (151 loc) · 6.14 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?xml version="1.0" encoding="UTF-8"?>
<project name="tagsuggest" default="all" basedir="./">
<target name="init" description="Initialize environment">
<property name="path.bin" value="bin"/>
<property name="path.build" value="build"/>
<property name="path.build.classes" value="build/classes"/>
<property name="path.build.tests" value="build/tests" />
<property name="path.lib" value="lib"/>
<property name="path.src" value="src/java"/>
<property name="path.tests" value="src/test" />
<property name="compile.debug" value="true"/>
<property name="compile.deprecation" value="true"/>
<property name="compile.optimize" value="true"/>
<property file="${basedir}/build.properties"/>
<property name="web" value="src/web" />
<property name="path.lib" value="${path.lib}" />
<property name="warFile" value="tagsuggest.war" />
<property name="warDir" value="${path.build}/war" />
<path id="compile.classpath">
<fileset dir="${path.lib}">
<include name="*.jar"/>
</fileset>
</path>
<path id="test.classpath">
<fileset dir="${path.lib}">
<include name="*.jar"/>
</fileset>
<pathelement path="${path.build.classes}" />
</path>
</target>
<target name="make_directories" description="Creates all project directories" depends="init">
<mkdir dir="${path.build}"/>
<mkdir dir="${path.build.classes}"/>
<mkdir dir="${path.build.tests}" />
<mkdir dir="${path.lib}"/>
<mkdir dir="${path.src}"/>
</target>
<target name="prepare" depends="init, make_directories" description="Prepare build directory">
</target>
<target name="compile" depends="prepare" description="Compile source">
<javac debug="${compile.debug}" deprecation="${compile.deprecation}" nowarn="on" destdir="${path.build.classes}" optimize="${compile.optimize}" srcdir="${path.src}" encoding="UTF-8">
<classpath refid="compile.classpath"/>
</javac>
</target>
<target name="clean" depends="init" description="Wipeout all generated files">
<delete dir="${path.build}"/>
</target>
<target name="compile-test" depends="compile">
<javac srcdir="${path.tests}" destdir="${path.build.tests}" encoding="UTF-8">
<classpath refid="test.classpath"/>
</javac>
</target>
<target name="clean-compile-test">
<delete>
<fileset dir="${path.build.tests}" includes="**/*.class" />
</delete>
</target>
<target name="test" depends="compile-test">
<junit>
<classpath refid="test.classpath" />
<classpath>
<pathelement path="${path.build.tests}"/>
</classpath>
<formatter type="brief" usefile="false" />
<batchtest fork="yes">
<fileset dir="${path.build.tests}">
<include name="**/*Test.class" />
</fileset>
</batchtest>
</junit>
</target>
<target name="all" depends="clean,onejar,hadoop-jar,war,src-zip" description="Clean and compile all components"/>
<target name="jar" depends="compile" description="Create binary distribution">
<jar basedir="${path.build.classes}" jarfile="${path.build}/tagsuggest-lib.jar">
<include name="**/*.class"/>
</jar>
</target>
<target name="onejar" depends="jar" description="Create one-jar runnable">
<taskdef name="one-jar" classname="com.simontuffs.onejar.ant.OneJarTask" classpath="lib/one-jar-ant-task-0.96.jar"></taskdef>
<manifest file="ONEJAR.MF">
<attribute name="One-Jar-Main-Class" value="org.thunlp.tool.EntryPoint" />
</manifest>
<one-jar destfile="${path.build}/tagsuggest.jar" manifest="ONEJAR.MF">
<main>
<fileset dir="${path.build.classes}">
<include name="**/*.class"/>
</fileset>
</main>
<lib>
<fileset dir="lib">
<include name="**/*.jar"/>
<exclude name="**/one-jar-*.jar"/>
</fileset>
</lib>
</one-jar>
</target>
<target name="hadoop-jar" depends="compile" description="Create binary distribution">
<copy todir="${path.build.classes}/lib">
<fileset dir="lib">
<include name="**/*.jar"/>
<exclude name="**/hadoop-*-core.jar"/>
</fileset>
</copy>
<pathconvert property="hadoop-jar.classpath" pathsep=" ">
<regexpmapper from="^(.*)/lib/(.*\.jar)$" to="lib/\2" />
<path>
<fileset dir="${path.build.classes}/lib">
<include name="**/*.jar" />
</fileset>
</path>
</pathconvert>
<manifest file="MANIFEST.MF">
<attribute name="Class-Path" value="${hadoop-jar.classpath}" />
<attribute name="Main-Class" value="org.thunlp.tool.EntryPoint" />
</manifest>
<jar basedir="${path.build.classes}" manifest="MANIFEST.MF" jarfile="${path.build}/tagsuggest-hadoop.jar">
<include name="**/*.class"/>
<include name="**/*.jar"/>
</jar>
<delete dir="${path.build.classes}/lib"/>
<delete file="MANIFEST.MF" />
</target>
<target name="src-zip" depends="compile" description="Creates source distribution">
<delete>
<fileset dir="${path.build}" includes="*-src.zip"/>
</delete>
<zip basedir="./src" destfile="${path.build}/tagsuggest-src.zip" whenempty="fail">
<include name="**/*.*"/>
<include name="*"/>
<include name="**/*"/>
<exclude name="${path.dist}/**/*.*"/>
<exclude name="*.*~"/> <!-- JEdit backups -->
<exclude name=".nbattrs"/> <!-- Netbeans filesystem attributes -->
<exclude name="*.old"/>
</zip>
</target>
<target name="war" depends="init, compile">
<copy todir="${warDir}/WEB-INF/classes">
<fileset dir="${path.build.classes}" includes="**/*.class" />
</copy>
<copy todir="${warDir}/WEB-INF/lib">
<fileset dir="lib" includes="**/*.*" excludes="**/servlet-api.jar" />
</copy>
<copy todir="${warDir}">
<fileset dir="${web}" includes="**/*.*" />
</copy>
<!-- Create war file and place in ear directory -->
<jar jarfile="build/${warFile}" basedir="${warDir}" />
</target>
<target name="dist" depends="jar,src-zip"/>
</project>