-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
executable file
·269 lines (226 loc) · 10.4 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<project name="Rembrandt" basedir="." default="compile">
<property name="version" value="1.5"/>
<property name="projectname" value="rembrandt"/>
<property name="Project_Name" value="Rembrandt"/>
<property name="user.name" value="Nuno Cardoso"/>
<property name="src.dir" value="src"/>
<property name="lib.dir" value="lib"/>
<property name="log.dir" value="log"/>
<property name="db.dir" value="db"/>
<property name="bin-groovy.dir" value="bin-groovy"/>
<property name="build.dir" value="build"/>
<!-- config as settings to be included in the pakage; private has settings (passowrds, etc) to not include -->
<property name="config.dir" value="conf"/>
<property name="doc.dir" value="doc"/>
<property name="web.dir" value="web"/>
<!-- include has files to put in the package; resources has files no not include (ex: tests) -->
<property name="include.dir" value="include"/>
<!-- scripts has utilities to include in the package; sandbox has utilities to not include -->
<property name="bin.dir" value="bin"/>
<property name="jar.dir" value="/Users/ncardoso/Programs/jar"/>
<!--
compile + jar = build
build + groovy = build-withdoc
build-withdoc + package = deploy
for test: compile-all
-->
<path id="all.classpath">
<pathelement location="${jar.dir}/hadoop.jar" />
<pathelement location="${jar.dir}/lucene-core-2.4.1.jar"/>
<pathelement location="${jar.dir}/lucene-snowball-2.4.1.jar"/>
<pathelement location="${jar.dir}/lucene-regex-2.9.0.jar"/>
<pathelement location="${jar.dir}/log4j-1.2.14.jar"/>
<pathelement location="${jar.dir}/junit-4.4.jar"/>
<pathelement location="${jar.dir}/jena.jar"/>
<pathelement location="${jar.dir}/sdb.jar"/>
<pathelement location="${jar.dir}/arq.jar"/>
<pathelement location="${jar.dir}/groovy-all-1.7.10.jar"/>
<pathelement location="${jar.dir}/xstream-1.3.1.jar"/>
<pathelement location="${jar.dir}/org.restlet.jar"/>
<pathelement location="${jar.dir}/commons-cli-1.2.jar"/>
<pathelement location="${jar.dir}/mysql-connector-java-5.1.7-bin.jar"/>
<pathelement location="${jar.dir}/lgte-1.2.12.jar"/>
<pathelement location="${bin-groovy.dir}"/>
</path>
<taskdef name="groovydoc" classname="org.codehaus.groovy.ant.Groovydoc"
classpathref="all.classpath">
</taskdef>
<taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy"
classpathref="all.classpath">
</taskdef>
<taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc"
classpathref="all.classpath">
</taskdef>
<target name="init" description="Rembrandt Version Initializer">
<echo message="Rembrandt Version ${version}"/>
</target>
<target name="clean" description="clean Groovydocs, jars and bins">
<delete dir="${bin-groovy.dir}"/>
</target>
<target name="compile" description="Compile main source groovy/java files"
depends="init">
<mkdir dir="${bin-groovy.dir}"/>
<groovyc encoding="UTF-8" srcdir="${src.dir}" destdir="${bin-groovy.dir}" memoryMaximumSize="1536m" memoryInitialSize="1024m">
<include name="**/*.groovy"/>
<exclude name="*/eval/**/*Test.groovy"/>
</groovyc>
</target>
<target name="compile-all" description="Compile main source groovy/java files plus tests"
depends="init">
<mkdir dir="${bin-groovy.dir}"/>
<groovyc encoding="UTF-8" srcdir="${src.dir}" destdir="${bin-groovy.dir}" memoryMaximumSize="1536m" memoryInitialSize="1024m">
<include name="**/*.groovy"/>
</groovyc>
</target>
<target name="test" description="Run JUnit tests">
<junit fork="yes" haltonfailure="no" filtertrace="on"
showoutput="true"
failureproperty="tests.failed"
errorproperty="tests.failed">
<classpath refid="all.classpath" />
<formatter type="brief" usefile="false" />
<batchtest todir="${log.dir}/test/rembrandt/">
<fileset dir="${bin-groovy.dir}/">
<include name="rembrandt/test/**/*Test.class"/>
<!-- a '$' in the filename means it's an inner class -->
<exclude name="**/*$*"/>
</fileset>
</batchtest>
<batchtest todir="${log.dir}/test/renoir/">
<fileset dir="${bin-groovy.dir}/">
<include name="renoir/test/**/*Test.class"/>
<!-- a '$' in the filename means it's an inner class -->
<exclude name="**/*$*, **/eval/*"/>
</fileset>
</batchtest>
<batchtest todir="${log.dir}/test/saskia/">
<fileset dir="${bin-groovy.dir}/">
<include name="saskia/test/**/*Test.class"/>
<!-- a '$' in the filename means it's an inner class -->
<exclude name="**/*$*"/>
</fileset>
</batchtest>
</junit>
</target>
<target name="suite" description="Run JUnit Suite tests">
<junit fork="yes" haltonfailure="no" filtertrace="on"
showoutput="true"
failureproperty="tests.failed"
errorproperty="tests.failed">
<classpath refid="all.classpath" />
<formatter type="brief" usefile="false" />
<batchtest todir="${log.dir}/test/rembrandt/">
<fileset dir="${bin-groovy.dir}/">
<include name="rembrandt/test/suite/*TestSuite.class"/>
<!-- a '$' in the filename means it's an inner class -->
<exclude name="**/*$*"/>
</fileset>
</batchtest>
<batchtest todir="${log.dir}/test/renoir/">
<fileset dir="${bin-groovy.dir}/">
<include name="renoir/test/suite/*TestSuite.class"/>
<!-- a '$' in the filename means it's an inner class -->
</fileset>
</batchtest>
<batchtest todir="${log.dir}/test/saskia/">
<fileset dir="${bin-groovy.dir}/">
<include name="saskia/test/suite/TestSuite.class"/>
<!-- a '$' in the filename means it's an inner class -->
<exclude name="**/*$*"/>
</fileset>
</batchtest>
</junit>
</target>
<target name="groovydoc" description="Generate Groovy Doc">
<delete dir="${doc.dir}"/>
<mkdir dir="${doc.dir}"/>
<groovydoc destdir="${doc.dir}" sourcepath="${src.dir}"
packagenames="*.*" use="true" private="false"
windowtitle="${Project_Name} ${version} API" />
<!--<symlink link="${web.dir}/api/${version}" resource="${doc.dir}"/>-->
</target>
<target name="jar" description="Create JAR file">
<buildnumber file="build.num"/>
<tstamp>
<format property="TODAY" pattern="yyyy-MM-dd HH:mm:ss" />
</tstamp>
<manifest file="MANIFEST.MF">
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="rembrandt.bin.Rembrandt"/>
<attribute name="Implementation-Version"
value="${version}-b${build.number}"/>
<attribute name="Built-Date" value="${TODAY}"/>
</manifest>
<jar destfile="${jar.dir}/${projectname}-${version}.jar" basedir="${bin-groovy.dir}" includes="**/*.class"
excludes="**/eval/*" manifest="MANIFEST.MF" />
<echo message="Build nr. ${build.number}"/>
</target>
<target name="jar-all" description="Create JAR file">
<buildnumber file="build.num"/>
<tstamp>
<format property="TODAY" pattern="yyyy-MM-dd HH:mm:ss" />
</tstamp>
<manifest file="MANIFEST.MF">
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="rembrandt.bin.Rembrandt"/>
<attribute name="Implementation-Version"
value="${version}-b${build.number}"/>
<attribute name="Built-Date" value="${TODAY}"/>
</manifest>
<jar destfile="${jar.dir}/${projectname}-${version}.jar" basedir="${bin-groovy.dir}" includes="**/*.class" manifest="MANIFEST.MF" />
<echo message="Build nr. ${build.number}"/>
</target>
<target name="build" description="Create simple JAR"
depends="compile, jar">
</target>
<target name="build-all" description="Create simple JAR with tests"
depends="compile-all, jar-all">
</target>
<target name="build-withdoc" description="Create simple JAR with docs"
depends="build, groovydoc">
</target>
<target name="package" description="Create a package" >
<delete dir="${build.dir}"/>
<mkdir dir="${build.dir}"/>
<!-- src -->
<tar tarfile="${build.dir}/${projectname}-${version}-src.tar" basedir="${src.dir}" />
<gzip zipfile="${build.dir}/${projectname}-${version}-src.tar.gz" src="${build.dir}/${projectname}-${version}-src.tar"/>
<delete file="${build.dir}/${projectname}-${version}-src.tar" />
<!-- groovydoc -->
<tar tarfile="${build.dir}/${projectname}-${version}-doc.tar" basedir="${doc.dir}" />
<gzip zipfile="${build.dir}/${projectname}-${version}-doc.tar.gz" src="${build.dir}/${projectname}-${version}-doc.tar"/>
<delete file="${build.dir}/${projectname}-${version}-doc.tar" />
<!-- config -->
<mkdir dir="${build.dir}/${config.dir}"/>
<copy todir="${build.dir}/${config.dir}">
<fileset dir="${config.dir}" includes="*" />
</copy>
<!-- lib -->
<mkdir dir="${build.dir}/${lib.dir}"/>
<copy todir="${build.dir}/${lib.dir}">
<fileset dir="${lib.dir}" includes="*" />
</copy>
<!-- db -->
<mkdir dir="${build.dir}/${db.dir}"/>
<copy todir="${build.dir}/${db.dir}">
<fileset dir="${db.dir}" includes="*" />
</copy>
<!-- bin -->
<mkdir dir="${build.dir}/${bin.dir}"/>
<copy todir="${build.dir}/${bin.dir}">
<fileset dir="${bin.dir}" includes="*" />
</copy>
<!-- include -->
<copy todir="${build.dir}">
<fileset dir="${include.dir}" includes="*" />
</copy>
<!-- log -->
<mkdir dir="${build.dir}/${log.dir}"/>
<!-- jar -->
<copy file="${jar.dir}/${projectname}-${version}.jar"
todir="${build.dir}" />
</target>
<target name="deploy" description="Create simple JAR with docs"
depends="build-withdoc, package">
</target>
</project>