-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.xml
342 lines (283 loc) · 14.5 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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<project name="aws-tasks" default="test">
<!--
Copyright 2010 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<property name="root.dir" value="${basedir}" />
<property file="${root.dir}/build.properties" />
<import file="${root.dir}/build.util.xml" />
<!-- ================================================================== -->
<!-- Classpath -->
<!-- ================================================================== -->
<path id="compile.classpath">
<fileset dir="${lib.dir}/compile">
<include name="**/*.jar" />
<exclude name="**/*-sources.jar" />
</fileset>
<fileset dir="${lib.dir}/provided">
<include name="**/*.jar" />
<exclude name="**/*-sources.jar" />
</fileset>
</path>
<path id="test.classpath">
<fileset dir="${lib.dir}/test">
<include name="**/*.jar" />
<exclude name="**/*-sources.jar" />
</fileset>
</path>
<path id="provided.classpath">
<fileset dir="${lib.dir}/provided">
<include name="**/*.jar" />
<exclude name="**/*-sources.jar" />
</fileset>
</path>
<path id="build.classpath">
<fileset dir="${lib.dir}/build">
<include name="**/*.jar" />
<exclude name="**/*-sources.jar" />
</fileset>
</path>
<!-- ================================================================== -->
<!-- General cleaning sources -->
<!-- ================================================================== -->
<target name="clean" description="--> clean project build files">
<echo>cleaning ${ant.project.name}</echo>
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${build.dir}" excludes="classes-*-eclipse/" />
</delete>
</target>
<!-- ================================================================== -->
<!-- Build sources -->
<!-- ================================================================== -->
<target name="compile" description="--> compile main classes">
<mkdir dir="${build.dir.main-classes}" />
<javac encoding="${build.encoding}" srcdir="${main.src.dir}" includes="**/*.java" destdir="${build.dir.main-classes}" debug="${javac.debug}" optimize="${javac.optimize}" target="${javac.version}" source="${javac.version}" deprecation="${javac.deprecation}">
<compilerarg line="${javac.args} ${javac.args.warnings}" />
<classpath refid="compile.classpath" />
</javac>
<copy todir="${build.dir.main-classes}">
<fileset dir="${main.res.dir}"/>
</copy>
</target>
<target name="compile-examples" description="--> compile example classes">
<mkdir dir="${build.dir.examples-classes}" />
<javac encoding="${build.encoding}" srcdir="${examples.src.dir}" includes="**/*.java" destdir="${build.dir.examples-classes}" debug="${javac.debug}" optimize="${javac.optimize}" target="${javac.version}" source="${javac.version}" deprecation="${javac.deprecation}">
<compilerarg line="${javac.args} ${javac.args.warnings}" />
<classpath refid="test.classpath" />
<classpath refid="compile.classpath" />
<classpath refid="test.path" />
</javac>
</target>
<!-- ================================================================== -->
<!-- Build sources -->
<!-- ================================================================== -->
<target name="check-header" description="--> check header">
<exec command="sh src/build/ant/checkHeaders.sh ${basedir}/src" failonerror="true"/>
</target>
<!-- ================================================================== -->
<!-- Unit Tests -->
<!-- ================================================================== -->
<target name="compile-test" depends="check-header,compile">
<echo>*** Building Unit Tests Sources ***</echo>
<mkdir dir="${build.dir.test-classes}" />
<path id="test.path">
<pathelement location="${build.dir.main-classes}" />
</path>
<javac encoding="${build.encoding}" srcdir="${test.src.dir}" includes="**/*.java" destdir="${build.dir.test-classes}" debug="${javac.debug}" optimize="${javac.optimize}" target="${javac.version}" source="${javac.version}" deprecation="${javac.deprecation}">
<compilerarg line="${javac.args} ${javac.args.warnings}" />
<classpath refid="test.classpath" />
<classpath refid="compile.classpath" />
<classpath refid="test.path" />
</javac>
<javac encoding="${build.encoding}" srcdir="${it.src.dir}" includes="**/*.java" destdir="${build.dir.test-classes}" debug="${javac.debug}" optimize="${javac.optimize}" target="${javac.version}" source="${javac.version}" deprecation="${javac.deprecation}">
<compilerarg line="${javac.args} ${javac.args.warnings}" />
<classpath refid="test.classpath" />
<classpath refid="compile.classpath" />
<classpath refid="test.path" />
</javac>
</target>
<target name="test" depends="unit, it" description="--> run unit & integration tests" />
<target name="unit" description="--> run unit tests">
<antcall target="runTests" >
<param name="test.batch.dir" value="${test.src.dir}" />
</antcall>
</target>
<target name="it" description="--> run integration tests">
<property name="ec2.properties" value="${it.res.dir}/ec2.properties"/>
<available file="${ec2.properties}" property="ec2.configured" value="true"/>
<fail unless="ec2.configured" message="please create and edit ${ec2.properties} to run integration tests (see ${ec2.properties}.template)"/>
<antcall target="runTests">
<param name="build.dir.test-reports" value="${build.dir.it-reports}" />
<param name="build.dir.test-classes" value="${build.dir.it-classes}" />
<param name="test.res.dir" value="${it.res.dir}" />
<!--<param name="test.src.dir" value="${it.src.dir}" />-->
<param name="test.batch.dir" value="${it.src.dir}" />
</antcall>
</target>
<target name="runTests" depends="compile-test">
<delete dir="${build.dir.test-reports}" />
<mkdir dir="${build.dir.test-reports}" />
<junit showoutput="false" printsummary="yes" haltonfailure="no" fork="yes" maxmemory="256m" dir="${basedir}" errorProperty="tests.failed" failureProperty="tests.failed">
<sysproperty key="net.sourceforge.cobertura.datafile" file="${reports.dir}/aws-tasks.ser" />
<classpath>
<pathelement location="${instrumented.dir}" />
<pathelement location="${build.dir.main-classes}" />
<pathelement location="${build.dir.test-classes}" />
<pathelement location="${test.res.dir}" />
<pathelement location="${main.res.dir}" />
<path refid="test.classpath" />
<path refid="compile.classpath" />
</classpath>
<formatter type="plain" />
<batchtest fork="yes" todir="${build.dir.test-reports}" unless="testcase">
<fileset dir="${test.batch.dir}">
<include name="**/*Test.java" unless="testcase" />
<exclude name="**/Abstract*.java" unless="testcase" />
<include name="${testcase}" if="testcase" />
</fileset>
</batchtest>
<batchtest fork="yes" todir="${build.dir.test-reports}" if="testcase">
<fileset dir="${test.batch.dir}" includes="**/${testcase}.java" />
</batchtest>
</junit>
<fail if="tests.failed">Tests failed!</fail>
</target>
<!-- ================================================================== -->
<!-- Build jar from sources -->
<!-- ================================================================== -->
<target name="jars" depends="jar,jar-sources" description="--> create the aws-tasks + source jar"/>
<target name="jar" depends="compile" description="--> create the aws-tasks jar">
<buildJar jarname="${jar.name}" mainclasses="${build.dir.main-classes}"/>
</target>
<target name="jar-sources" description="--> create the aws-tasks sources jar">
<buildJar jarname="${jar.sources.name}" mainclasses="${main.src.dir}" />
</target>
<!-- ================================================================== -->
<!-- Java Doc -->
<!-- ================================================================== -->
<target name="doc" depends="compile" description="--> create javadoc">
<mkdir dir="${build.javadoc}" />
<javadoc packagenames="${javadoc.package}" destdir="${build.javadoc}" author="true" version="true" use="true" windowtitle="${name} ${version} API" doctitle="${name} ${version} API" bottom="Copyright &copy; ${javadoc.year} ???">
<packageset dir="${main.src.dir}" />
<link href="${javadoc.link.java}" />
<classpath>
<path refid="compile.classpath" />
</classpath>
<group title="${javadoc.title}" packages="${javadoc.package}*" />
</javadoc>
</target>
<!-- ================================================================== -->
<!-- Generate a distribution -->
<!-- ================================================================== -->
<target name="upgradeAwsSdk" description="--> upgrades the aws-sdk libs">
<property name="sdkDownload" value="${build.dir}/aws-java-sdk.zip"/>
<get src="http://sdk-for-java.amazonwebservices.com/latest/aws-java-sdk.zip"
dest="${sdkDownload}"/>
<unzip src="${sdkDownload}"
dest="${build.dir}">
</unzip>
<delete>
<fileset dir="lib/compile/aws-sdk" includes="aws-java-sdk-*.jar"/>
</delete>
<copy todir="lib/compile/aws-sdk" flatten="true">
<fileset dir="${build.dir}">
<include name="aws-java-sdk-*/lib/aws-java-sdk-*.jar"/>
<exclude name="aws-java-sdk-*/lib/aws-java-sdk-*javadoc.jar"/>
<exclude name="aws-java-sdk-*/lib/aws-java-sdk-flow*.jar"/>
</fileset>
</copy>
<echo message="Updating of the core jars done! Please compare ${build.dir}/aws-java-sdk-*/third-party and lib/compile/aws-sdk for changed third-party dependencies!"/>
</target>
<!-- ================================================================== -->
<!-- Generate a distribution -->
<!-- ================================================================== -->
<target name="dist" depends="check-header, jar, doc" description="--> build distribution">
<defaultexcludes add="**/.git/**,**/.gitignore"/>
<delete dir="${build.dir.dist}" />
<!-- create target directory -->
<mkdir dir="${build.dir.dist}" />
<mkdir dir="${build.dir.dist}/docs" />
<mkdir dir="${build.dir.dist}/docs/javadoc" />
<mkdir dir="${build.dir.dist}/lib" />
<mkdir dir="${build.dir.dist}/src" />
<!-- copy javadoc to target dir -->
<copy todir="${build.dir.dist}/docs/javadoc">
<fileset dir="${build.javadoc}" />
</copy>
<!-- copy jars -->
<copy todir="${build.dir.dist}/lib" flatten="true">
<fileset dir="${lib.dir}/compile" >
<exclude name="*-sources.jar"/>
</fileset>
</copy>
<!-- copy src -->
<copy todir="${build.dir.dist}/src">
<fileset dir="${basedir}/src">
<include name="main/**"/>
<include name="examples/**"/>
<exclude name="it/resources/ec2.properties"/>
</fileset>
</copy>
<!-- copy to dist dir -->
<copy todir="${build.dir.dist}">
<fileset file="${build.dir}/${jar.name}" />
<fileset file="${basedir}/LICENSE" />
<fileset file="${basedir}/README.markdown" />
<fileset file="${it.res.dir}/ec2.properties.template" />
</copy>
<tar longfile="gnu" compression="gzip" destfile="${build.release.file}" >
<tarfileset dir="${build.dir.dist}" prefix="${name}-${version}">
</tarfileset>
</tar>
</target>
<!-- ================================================================== -->
<!-- Generating eclipse file -->
<!-- ================================================================== -->
<target name="eclipse" depends="clean-eclipse" description="--> create Eclipse project files">
<taskdef name="eclipse" classname="prantl.ant.eclipse.EclipseTask" classpathref="build.classpath" />
<mkdir dir="${build.dir.main-classes-eclipse}" />
<mkdir dir="${build.dir.test-classes-eclipse}" />
<mkdir dir="${build.dir.it-classes-eclipse}" />
<eclipse updatealways="true">
<settings>
<jdtcore compilercompliance="6.0" />
<resources encoding="UTF-8" />
</settings>
<project name="${ant.project.name}" />
<classpath>
<container path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6" />
<source path="${basedir}/${main.src.dir}" output="${build.dir.main-classes-eclipse}" />
<source path="${basedir}/${main.res.dir}" output="${build.dir.main-classes-eclipse}" />
<source path="${basedir}/${examples.java.src.dir}" output="${build.dir.test-classes-eclipse}" />
<source path="${basedir}/${examples.ant.src.dir}" output="${build.dir.test-classes-eclipse}" />
<source path="${basedir}/${test.src.dir}" output="${build.dir.test-classes-eclipse}" />
<source path="${basedir}/${test.res.dir}" output="${build.dir.test-classes-eclipse}" />
<source path="${basedir}/${it.src.dir}" output="${build.dir.it-classes-eclipse}" />
<source path="${basedir}/${it.res.dir}" output="${build.dir.it-classes-eclipse}" />
<output path="${build.dir.main-classes-eclipse}" />
<library pathref="test.classpath" exported="false" />
<library pathref="compile.classpath" />
</classpath>
</eclipse>
<concat destfile="${root.dir}/.settings/org.eclipse.jdt.core.prefs" append="true">
<filelist dir="${root.dir}/src/build/eclipse/" files="eclipse-formatter" />
</concat>
<copy file="${root.dir}/src/build/eclipse/org.eclipse.jdt.ui.prefs" todir="${root.dir}/.settings" />
<replace file="${root.dir}/.settings/org.eclipse.jdt.core.prefs" token="org.eclipse.jdt.core.compiler.compliance=6.0" value="org.eclipse.jdt.core.compiler.compliance=1.6" />
<replaceregexp file=".classpath" match="path="(.*).jar"" replace="path="\1.jar" sourcepath="\1-sources.jar"" flags="g" />
</target>
<target name="clean-eclipse" description="--> clean Eclipse project files">
<delete file=".classpath" />
<delete file=".eclipse" />
<delete file=".project" />
<delete dir=".settings" />
</target>
</project>