-
Notifications
You must be signed in to change notification settings - Fork 48
/
build.xml
471 lines (419 loc) · 20.8 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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
-->
<project name="hcatalog" default="jar"
xmlns:artifact="artifact:org.apache.maven.artifact.ant">
<property name="path.to.basedir" location="${basedir}"/>
<loadproperties srcfile="${basedir}/build.properties"/>
<!--
================================================================================
Properties and Classpaths Section
================================================================================
-->
<condition property="staging">
<equals arg1="${repo}" arg2="staging"/>
</condition>
<!-- e2e test properties -->
<property name="test.e2e.dir" value="${basedir}/src/test/e2e/hcatalog"/>
<!-- packaging properties -->
<property name="package.prefix" value="/usr"/>
<property name="package.conf.dir" value="/etc/hcatalog"/>
<property name="package.log.dir" value="/var/log/hcatalog"/>
<property name="package.pid.dir" value="/var/run/hcatalog"/>
<property name="package.var.dir" value="/var/lib/hcatalog"/>
<property name="package.share.dir" value="/share/hcatalog/${module}"/>
<property name="package.buildroot" value="${build.dir}/rpm/hcatalog_package_build_${user.name}"/>
<property name="package.build.dir" value="${build.dir}/rpm/hcatalog_package_build_${user.name}/BUILD"/>
<target name="init">
<mkdir dir="${dist.dir}"/>
</target>
<!--
================================================================================
Build all jars
================================================================================
-->
<target name="jar" depends="init" description="build all jars">
<ant target="jar" dir="core" inheritAll="false">
<property name="_mvn.hadoop.profile" value="${mvn.hadoop.profile}"/>
</ant>
<ant target="jar" dir="hcatalog-pig-adapter" inheritAll="false">
<property name="_mvn.hadoop.profile" value="${mvn.hadoop.profile}"/>
</ant>
<ant target="jar" dir="server-extensions" inheritAll="false">
<property name="_mvn.hadoop.profile" value="${mvn.hadoop.profile}"/>
</ant>
<ant target="jar" dir="webhcat/svr" inheritAll="false">
<property name="_mvn.hadoop.profile" value="${mvn.hadoop.profile}"/>
</ant>
<ant target="jar" dir="webhcat/java-client" inheritAll="false">
<property name="_mvn.hadoop.profile" value="${mvn.hadoop.profile}"/>
</ant>
<ant target="jar" dir="storage-handlers/hbase" inheritAll="false">
<property name="_mvn.hadoop.profile" value="${mvn.hadoop.profile}"/>
</ant>
</target>
<!--
================================================================================
Test Section
================================================================================
-->
<target name="test" depends="jar" description="run unit tests">
<ant target="test" dir="core" inheritAll="false"/>
<ant target="test" dir="hcatalog-pig-adapter" inheritAll="false"/>
<ant target="test" dir="server-extensions" inheritAll="false"/>
<ant target="test" dir="webhcat/svr" inheritAll="false"/>
<ant target="test" dir="webhcat/java-client" inheritAll="false"/>
<ant target="test" dir="storage-handlers/hbase" inheritAll="false"/>
<!-- One checkstyle run for the whole repo. Runs after junit tests
to piggyback on resolved jars. -->
<path id="checkstyle.class.path">
<fileset dir="core/build/lib/test"/>
</path>
<antcall target="checkstyle" inheritRefs="true"/>
</target>
<target name="test-with-clover" depends="clover-init"
description="run unit tests and generate code coverage reports">
<ant target="_test-with-clover" dir="core" inheritAll="false"/>
<ant target="_test-with-clover" dir="hcatalog-pig-adapter" inheritAll="false"/>
<ant target="_test-with-clover" dir="server-extensions" inheritAll="false"/>
<ant target="_test-with-clover" dir="webhcat/svr" inheritAll="false"/>
<ant target="_test-with-clover" dir="webhcat/java-client" inheritAll="false"/>
<!-- storage-handlers do not have coverage as they have not
yet been migrated to the new build files. -->
<ant target="test" dir="storage-handlers/hbase" inheritAll="false"/>
</target>
<!--
================================================================================
Findbugs Section
================================================================================
-->
<target name="findbugs" depends="init-findbugs,jar">
<property name="findbugs.out.dir" value="${test.dir}/findbugs"/>
<property name="findbugs.exclude.file" value="${test.src.dir}/findbugsExcludeFile.xml"/>
<property name="findbugs.report.htmlfile"
value="${findbugs.out.dir}/hcat-findbugs-report.html"/>
<property name="findbugs.report.xmlfile"
value="${findbugs.out.dir}/hcat-findbugs-report.xml"/>
<ant target="findbugs" dir="core" inheritAll="false"/>
<ant target="findbugs" dir="hcatalog-pig-adapter" inheritAll="false"/>
<ant target="findbugs" dir="server-extensions" inheritAll="false"/>
<ant target="findbugs" dir="webhcat/svr" inheritAll="false"/>
<ant target="findbugs" dir="webhcat/java-client" inheritAll="false"/>
</target>
<!--
================================================================================
Clean Section
================================================================================
-->
<!-- Clean up children -->
<target name="clean" description="Cleanup all build artifacts">
<echo message="${ant.project.name}"/>
<delete dir="${build.dir}"/>
<ant target="clean" dir="core" inheritAll="false"/>
<ant target="clean" dir="hcatalog-pig-adapter" inheritAll="false"/>
<ant target="clean" dir="server-extensions" inheritAll="false"/>
<ant target="clean" dir="webhcat/svr" inheritAll="false"/>
<ant target="clean" dir="webhcat/java-client" inheritAll="false"/>
<ant target="clean" dir="storage-handlers/hbase" inheritAll="false"/>
<ant target="clean" dir="shims" inheritAll="false"/>
</target>
<!--
================================================================================
Docs Section
================================================================================
-->
<target name="docs" depends="forrest, javadoc"
description="Generate Javadoc and Forrest documentation">
</target>
<target name="forrest" if="forrest.home"
description="Generate forrest-based documentation. To use, specify -Dforrest.home=<base of Apache Forrest installation> on the command line.">
<exec dir="${docs.src}" executable="${forrest.home}/bin/forrest"
failonerror="true">
</exec>
<copy todir="${build.docs}/">
<fileset dir="${docs.src}/build/site/"/>
</copy>
</target>
<target name="javadoc" depends="jar" description="Generate Javadoc documentation">
<mkdir dir="${build.javadoc}"/>
<record name="${build.dir}/javadoc.log" action="start"/>
<javadoc overview="${src.dir}/../docs/overview.html"
packagenames="org.apache.hcatalog.*"
destdir="${build.javadoc}"
author="true"
version="true"
use="true"
noqualifier="all"
windowtitle="HCatalog ${hcatalog.version} API"
doctitle="HCatalog ${hcatalog.version} API"
failonerror="true">
<packageset dir="core/src/main/java"/>
<packageset dir="hcatalog-pig-adapter/src/main/java"/>
<packageset dir="server-extensions/src/main/java"/>
<packageset dir="storage-handlers/hbase/src/gen-java"/>
<packageset dir="storage-handlers/hbase/src/java"/>
<packageset dir="webhcat/svr/src/main/java"/>
<packageset dir="webhcat/java-client/src/main/java"/>
<classpath>
<fileset dir="core/build/lib/test"/>
<fileset dir="hcatalog-pig-adapter/build/lib/compile"/>
<fileset dir="hcatalog-pig-adapter/build/lib/provided"/>
<fileset dir="server-extensions/build/lib/compile"/>
<fileset dir="server-extensions/build/lib/provided"/>
<fileset dir="storage-handlers/hbase/build/lib/compile"/>
<fileset dir="storage-handlers/hbase/build/lib/provided"/>
<fileset dir="webhcat/svr/build/lib/compile"/>
<fileset dir="webhcat/svr/build/lib/provided"/>
</classpath>
<group title="hcatalog" packages="org.apache.hcatalog.*"/>
</javadoc>
<record name="${build.dir}/javadoc.log" action="stop"/>
<condition property="javadoc.warnings">
<isfileselected file="${build.dir}/javadoc.log">
<contains text="warnings"/>
</isfileselected>
</condition>
<fail if="javadoc.warnings">Javadoc comments contain warnings.</fail>
</target>
<!--
===============================================================================
Deploy Section
===============================================================================
-->
<target name="mvn-deploy" depends="mvn-init"
description="Deploy artifacts to a Maven repository.">
<artifact:deploy file="pom.xml">
<artifact:pom file="pom.xml"/>
<remoteRepository id="${mvn.deploy.repo.id}" url="${mvn.deploy.repo.url}"/>
</artifact:deploy>
<ant target="mvn-deploy" dir="core" inheritAll="false" useNativeBasedir="true"/>
<ant target="mvn-deploy" dir="hcatalog-pig-adapter" inheritAll="false" useNativeBasedir="true"/>
<ant target="mvn-deploy" dir="server-extensions" inheritAll="false" useNativeBasedir="true"/>
<ant target="mvn-deploy" dir="webhcat/java-client" inheritAll="false" useNativeBasedir="true"/>
<ant target="mvn-deploy" dir="webhcat/svr" inheritAll="false" useNativeBasedir="true"/>
</target>
<target name="mvn-deploy-signed" depends="mvn-init"
description="Sign and deploy artifacts to a Maven repository.">
<input message="Enter your gpg password (or just press return if using an agent): "
addproperty="gpg.passphrase">
<handler classname="org.apache.tools.ant.input.SecureInputHandler"/>
</input>
<_sign inputFile="pom.xml"/>
<artifact:deploy file="pom.xml">
<artifact:pom file="pom.xml"/>
<attach file="pom.xml.asc" type="pom.asc"/>
<remoteRepository id="${mvn.deploy.repo.id}" url="${mvn.deploy.repo.url}"/>
</artifact:deploy>
<ant target="mvn-deploy-signed" dir="core" inheritAll="false" useNativeBasedir="true">
<property name="gpg.passphrase" value="${gpg.passphrase}"/>
</ant>
<ant target="mvn-deploy-signed" dir="hcatalog-pig-adapter" inheritAll="false" useNativeBasedir="true">
<property name="gpg.passphrase" value="${gpg.passphrase}"/>
</ant>
<ant target="mvn-deploy-signed" dir="server-extensions" inheritAll="false" useNativeBasedir="true">
<property name="gpg.passphrase" value="${gpg.passphrase}"/>
</ant>
<ant target="mvn-deploy-signed" dir="webhcat/java-client" inheritAll="false" useNativeBasedir="true">
<property name="gpg.passphrase" value="${gpg.passphrase}"/>
</ant>
<ant target="mvn-deploy-signed" dir="webhcat/svr" inheritAll="false" useNativeBasedir="true">
<property name="gpg.passphrase" value="${gpg.passphrase}"/>
</ant>
</target>
<!--
===============================================================================
Distribution Section
===============================================================================
-->
<target name="package" depends="jar, docs" description="Create an HCatalog release">
<mkdir dir="${dist.dir}"/>
<mkdir dir="${dist.dir}/share/${ant.project.name}/lib"/>
<mkdir dir="${dist.dir}/etc/hcatalog"/>
<mkdir dir="${dist.dir}/bin"/>
<mkdir dir="${dist.dir}/sbin"/>
<mkdir dir="${dist.dir}/share/${ant.project.name}/scripts"/>
<mkdir dir="${dist.dir}/share/${ant.project.name}/templates/conf"/>
<mkdir dir="${dist.dir}/share/doc/${ant.project.name}"/>
<mkdir dir="${dist.dir}/share/doc/${ant.project.name}/api"/>
<mkdir dir="${dist.dir}/share/doc/${ant.project.name}/jdiff"/>
<mkdir dir="${dist.dir}/share/doc/${ant.project.name}/license"/>
<copy todir="${dist.dir}/share/${ant.project.name}" includeEmptyDirs="false">
<fileset dir="core/build">
<include name="hcatalog-*.jar"/>
</fileset>
<fileset dir="hcatalog-pig-adapter/build">
<include name="hcatalog-*.jar"/>
</fileset>
<fileset dir="server-extensions/build">
<include name="hcatalog-*.jar"/>
</fileset>
</copy>
<copy todir="${dist.dir}/share/webhcat/svr/" includeEmptyDirs="false">
<fileset dir="webhcat/svr/build">
<include name="webhcat-*.jar"/>
</fileset>
</copy>
<copy todir="${dist.dir}/share/webhcat/svr/lib/" includeEmptyDirs="false">
<fileset dir="webhcat/svr/build/lib/compile/">
<include name="*.jar"/>
</fileset>
</copy>
<copy todir="${dist.dir}/share/webhcat/java-client/" includeEmptyDirs="false">
<fileset dir="webhcat/java-client/build">
<include name="webhcat-java-client*.jar"/>
</fileset>
</copy>
<copy todir="${dist.dir}/bin">
<fileset dir="bin/">
<include name="hcat"/>
</fileset>
</copy>
<copy todir="${dist.dir}/libexec">
<fileset dir="bin">
<include name="hcat-config.sh"/>
</fileset>
</copy>
<copy todir="${dist.dir}/sbin">
<fileset dir="${package.dir}">
<include name="*.sh"/>
</fileset>
</copy>
<copy todir="${dist.dir}/etc/${ant.project.name}">
<fileset dir="conf"/>
</copy>
<copy todir="${dist.dir}/etc/webhcat">
<fileset dir="webhcat/svr/src/main/config/" />
</copy>
<copy todir="${dist.dir}/share/${ant.project.name}/scripts">
<fileset dir="scripts">
<include name="*.sh"/>
</fileset>
</copy>
<copy todir="${dist.dir}/share/${ant.project.name}/templates/conf">
<fileset dir="src/packages/templates/conf">
<include name="*"/>
</fileset>
</copy>
<copy todir="${dist.dir}/sbin">
<fileset dir="${package.dir}">
<include name="*.sh"/>
</fileset>
<fileset dir="webhcat/svr/src/main/bin">
<include name="*.sh"/>
</fileset>
<fileset dir="bin">
<include name="hcat_server.sh"/>
</fileset>
</copy>
<!-- Copy the licenses and such -->
<copy todir="${dist.dir}/share/doc/${ant.project.name}">
<fileset dir=".">
<include name="*.txt"/>
</fileset>
</copy>
<copy todir="${dist.dir}/share/doc/${ant.project.name}/license">
<fileset dir="license"/>
</copy>
<chmod perm="ugo+x" type="file">
<fileset dir="${dist.dir}/bin"/>
<fileset dir="${dist.dir}/sbin"/>
</chmod>
<!--package storage-handlers -->
<property name="handlers.dir" value="${dist.dir}/share/hcatalog/storage-handlers"/>
<mkdir dir="${handlers.dir}"/>
<ant target="package" dir="storage-handlers/hbase" inheritAll="false">
<property name="dist.handlers.dir" value="${handlers.dir}"/>
</ant>
<!--
While ant has a native tar task, we call out to the command-line
tar command because it preserves file permissions of our carefully
constructed package dir.
-->
<exec executable="tar">
<arg value="-C"/>
<arg value="${build.dir}"/>
<arg value="-czf"/>
<arg value="${build.dir}/${final.name}.tar.gz"/>
<arg value="${final.name}"/>
</exec>
<checksum file="${build.dir}/${final.name}.tar.gz" forceOverwrite="yes"/>
</target>
<target name="releaseaudit" depends="init" description="generate a release audit report">
<get src="${mvnrepo}/org/apache/rat/apache-rat/${apache-rat.version}/apache-rat-${apache-rat.version}.jar"
dest="${basedir}/build/apache-rat-${apache-rat.version}.jar"
usetimestamp="true"
skipexisting="true"/>
<java jar="${basedir}/build/apache-rat-${apache-rat.version}.jar"
fork="true"
output="${basedir}/build/releaseaudit_report.txt">
<arg value="--dir"/>
<arg value="${basedir}"/>
<arg value="--exclude-file"/>
<arg value="build-support/conf/rat-excludes.txt"/>
</java>
<echo message="releaseaudit report generated at ${basedir}/build/releaseaudit_report.txt"/>
</target>
<!-- ================================================================== -->
<!-- Make release tarball -->
<!-- ================================================================== -->
<target name="src-release" depends="clean" description="Source distribution">
<mkdir dir="${build.dir}"/>
<property name="src-release-tarball"
value="${build.dir}/${ant.project.name}-src-${hcatalog.version}.tar.gz"/>
<tar compression="gzip" longfile="gnu" destfile="${src-release-tarball}">
<tarfileset dir="${basedir}" mode="644" prefix="${ant.project.name}-src-${hcatalog.version}">
<include name="build-support/**"/>
<exclude name="build-support/scripts/**"/>
<include name="conf/**"/>
<include name="core/**"/>
<include name="hcatalog-pig-adapter/**"/>
<include name="server-extensions/**"/>
<include name="webhcat/**"/>
<include name="license/**"/>
<include name="shims/**"/>
<include name="src/**"/>
<include name="storage-handlers/**"/>
<include name="*.properties"/>
<include name="*.txt"/>
<include name="*.xml"/>
<include name="KEYS"/>
</tarfileset>
<tarfileset dir="${basedir}" mode="755" prefix="${ant.project.name}-src-${hcatalog.version}">
<include name="bin/**"/>
<include name="build-support/scripts/**"/>
<include name="scripts/**"/>
</tarfileset>
</tar>
<checksum file="${src-release-tarball}" forceOverwrite="yes"/>
</target>
<!-- ================================================================== -->
<!-- End to end tests -->
<!-- ================================================================== -->
<target name="test-e2e" description="run end-to-end tests">
<ant dir="${test.e2e.dir}"/>
</target>
<target name="test-e2e-install" description="deploy end-to-end tests to existing cluster">
<ant dir="${test.e2e.dir}" target="install"/>
</target>
<target name="test-e2e-deploy" description="deploy end-to-end tests to existing cluster">
<ant dir="${test.e2e.dir}" target="deploy"/>
</target>
<import file="build-support/ant/checkstyle.xml"/>
<import file="build-support/ant/deploy.xml"/>
<import file="build-support/ant/findbugs.xml"/>
<import file="build-support/ant/test.xml"/>
</project>