-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSkeleton-build.xml
502 lines (478 loc) · 13.5 KB
/
Skeleton-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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
<?xml version="1.0" encoding="UTF-8"?>
<!--
This Ant buildfile requires that you have included the following Ant library extensions:
<ul>
<li><a href="http://maven.apache.org/ant-tasks/">Maven Ant Tasks</a></li>
<li><a href="http://subclipse.tigris.org/svnant.html">SvnAnt</a></li>
<li><a href="http://antelope.tigris.org/">Antelope</a></li>
<li><a href="http://antelope.tigris.org/">Antelope</a></li>
</ul>
When building, you can override the Java property <code>sdk.dir</code> in order to point to the Android SDK home directory.
-->
<project
xmlns:artifact="antlib:org.apache.maven.artifact.ant"
name="Skeleton-build"
default="project.init"
basedir="."
>
<description>The aim of this Ant buildfile is to propose helpers for handling the 'Skeleton' Android project.</description>
<loadproperties srcfile="Skeleton-build.properties"/>
<!-- The AntContrib library extends Ant. -->
<taskdef resource="net/sf/antcontrib/antlib.xml"/>
<!-- The Antelope library extends Ant. -->
<taskdef
name="stringutil"
classname="ise.antelope.tasks.StringUtilTask"
/>
<!-- The SvnAnt library. -->
<property
name="svnant.directoryPath"
location="/opt/svnant-1.3.0"
/>
<path id="svnant.classpath">
<fileset dir="${svnant.directoryPath}">
<include name="**/*.jar"/>
</fileset>
</path>
<typedef
resource="org/tigris/subversion/svnant/svnantlib.xml"
classpathref="svnant.classpath"
/>
<property
name="sf.useMaven"
value="true"
/>
<target
name="project.defineMacroCommit"
depends=""
description="Defines a SVN 'commit' macro."
>
<macrodef name="commit">
<attribute name="comment"/>
<element name="fileSetIncludeAndExcludes"/>
<sequential>
<!--antcall target="project.computeSvn"/-->
<svn
username="${svn.login}"
password="${svn.password}"
>
<commit message="@{comment}">
<fileSetIncludeAndExcludes/>
</commit>
</svn>
</sequential>
</macrodef>
</target>
<target
name="defineMacroAdd.project"
depends=""
description="Defines a SVN 'add' macro."
>
<macrodef name="add">
<element name="fileSetIncludeAndExcludes"/>
<sequential>
<!--antcall target="project.computeSvn"/-->
<svn
username="${login.svn}"
password="${login.password}"
svnkit="true"
>
<add recurse="true">
<fileSetIncludeAndExcludes/>
</add>
</svn>
</sequential>
</macrodef>
</target>
<target
name="releaseAndTag"
depends="project.init, project.build, project.preTag, project.tag"
description="Builds from scratch the .apk and then tags the current version of the project."
/>
<target
name="project.tag"
depends="project.init, project.ensureSvnTag, project.computeSvn"
description="Tags the current version of the project."
>
<propertyregex
property="tag.svn"
input="${svn.relativePath}"
regexp=".*/(.*)"
select="\1-${version.svn}"
/>
<propertyregex
property="tagUrl.svn"
override="yes"
input="${repository.url}"
regexp="${svnTagPathRegexp}"
replace="\1/tags/${tag.svn}"
global="true"
/>
<echo>Creating the tag '${tag.svn}' from the '${repository.url}' HEAD</echo>
<svn
username="${svn.login}"
password="${svn.password}"
>
<copy
srcUrl="${repository.url}"
destUrl="${tagUrl.svn}"
revision="HEAD"
message="The v${version.svn}."
/>
</svn>
</target>
<target
name="project.computeSvn"
depends="project.init, project.ensureSvn"
description="Computes the SVN properties."
>
<if>
<not>
<isset property="repository.url"/>
</not>
<then>
<svn
username="${svn.login}"
password="${svn.password}"
>
<wcVersion
path="."
prefix=""
/>
</svn>
</then>
</if>
</target>
<target
name="project.ensureSvnTag"
depends="project.init"
description="Asks for the SVN tag if necessary."
>
<input
message="Version of the release?"
addproperty="version.svn"
/>
<property
name="tag.svn"
value="${projectPrefix}-${version.svn}"
/>
</target>
<target
name="project.ensureSvn"
depends="project.init"
description="Asks for the SVN credentials if necessary."
>
<input
message="SVN login?"
addproperty="svn.login"
/>
<input
message="SVN password?"
addproperty="svn.password"
/>
</target>
<!-- -->
<!-- The section specific to Android -->
<!-- -->
<target
name="project.init"
depends="project.defineMacroCommit, defineMacroAdd.project"
description="Default target, which should always be called first be other targets."
>
<property
name="temporary.directoryPath"
location="temp"
/>
</target>
<target
name="project.build"
depends="project.init"
description="Builds from scratch the project .apk."
>
<if>
<equals
arg1="${sf.useMaven}"
arg2="true"
/>
<then>
<artifact:mvn
mavenHome="${maven.directoryPath}"
pom="pom.xml"
fork="true"
>
<arg line="clean install -Psign"/>
<arg line="-Dandroid.sdk.path=${sdk.dir} -Dkey.store.password=${key.store.password} -Dkey.alias.password=${key.alias.password}"/>
</artifact:mvn>
</then>
<else>
<delete dir="bin"/>
<ant
antfile="build.xml"
target="release"
/>
</else>
</if>
</target>
<target
name="project.clean"
depends="project.init"
description="Cleans-up the project generated artifacts."
>
<delete dir="bin"/>
</target>
<target
name="project.preTag"
depends="project.init, project.ensureSvnTag, project.ensureSvn"
description="Performs some operation before the project is tagged."
>
<property
name="distribution.directoryPath"
location="dist"
/>
<property
name="installationPackage.filePath"
location="${distribution.directoryPath}/${projectPrefix}.apk"
/>
<svn
username="${svn.login}"
password="${svn.password}"
>
<status
path="${installationPackage.filePath}"
textStatusProperty="status.svn"
/>
</svn>
<echo>The SVN status of the installation package file '${installationPackage.filePath}' is '${status.svn}'.</echo>
<mkdir dir="dist"/>
<copy
file="bin/${projectPrefix}-android-release.apk"
tofile="${installationPackage.filePath}"
/>
<if>
<equals
arg1="${status.svn}"
arg2="unversioned"
/>
<then>
<echo>Adding to SVN the distribution directory '${distribution.directoryPath}'...</echo>
<add>
<fileSetIncludeAndExcludes >
<fileset file="${distribution.directoryPath}"/>
</fileSetIncludeAndExcludes>
</add>
<echo>Committing to SVN the distribution directory '${distribution.directoryPath}'...</echo>
<commit comment="The repostory of the distribution packages.">
<fileSetIncludeAndExcludes>
<fileset file="${distribution.directoryPath}"/>
</fileSetIncludeAndExcludes>
</commit>
<echo>Adding to SVN the installation package '${installationPackage.filePath}'...</echo>
<add>
<fileSetIncludeAndExcludes >
<fileset file="${installationPackage.filePath}"/>
</fileSetIncludeAndExcludes>
</add>
</then>
</if>
<echo>Committing to SVN the installation package '${installationPackage.filePath}'...</echo>
<commit comment="New version of the installation package for the '${tag.svn}'.">
<fileSetIncludeAndExcludes>
<fileset file="${installationPackage.filePath}"/>
</fileSetIncludeAndExcludes>
</commit>
</target>
<target
name="project.prepareNextVersion"
depends="project.init"
description="Modifies the 'AndroidManifest.xml' file for preparing a new version of the project release."
>
<loadfile
srcFile="AndroidManifest.xml"
property="manifest"
/>
<propertyregex
property="manifest.curentVersionName"
override="yes"
input="${manifest}"
regexp="(android:versionName=")(.*)(")"
select="\2"
/>
<input
message="Next version name?"
addproperty="manifest.versionName"
defaultvalue="${manifest.curentVersionName}"
/>
<propertyregex
property="manifest"
override="yes"
input="${manifest}"
regexp="(android:versionName=")(.*)(")"
replace="\1${manifest.versionName}\3"
/>
<propertyregex
property="manifest.curentVersionCode"
override="yes"
input="${manifest}"
regexp="(android:versionCode=")(.*)(")"
select="\2"
/>
<input
message="Next version code?"
addproperty="manifest.versionCode"
defaultvalue="${manifest.curentVersionCode}"
/>
<propertyregex
property="manifest"
override="yes"
input="${manifest}"
regexp="(android:versionCode=")(.*)(")"
replace="\1${manifest.versionCode}\3"
/>
<echo
file="AndroidManifest.xml"
message="${manifest}"
/>
</target>
<!-- -->
<!-- The section specific to the software factory -->
<!-- -->
<target
name="sf.init"
depends=""
description="Initializes the software factory properties."
>
<!-- This propery 'sf.properties.filePath' must be defined during the software factory run. -->
<loadproperties srcfile="${sf.properties.filePath}">
<filterchain>
<linecontains>
<contains value="${sf.projectName}"/>
</linecontains>
</filterchain>
</loadproperties>
<macrodef name="propertycopyIf">
<attribute name="name"/>
<attribute name="from"/>
<sequential>
<if>
<isset property="@{from}"/>
<then>
<propertycopy
name="@{name}"
from="@{from}"
/>
</then>
</if>
</sequential>
</macrodef>
<propertycopyIf
name="key.alias.password"
from="${sf.projectName}.key.alias.password"
/>
<propertycopyIf
name="key.store.password"
from="${sf.projectName}.key.store.password"
/>
<propertycopyIf
name="ftp.hostName"
from="${sf.projectName}.ftp.hostName"
/>
<propertycopyIf
name="ftp.directoryName"
from="${sf.projectName}.ftp.directoryName"
/>
<propertycopyIf
name="ftp.login"
from="${sf.projectName}.ftp.login"
/>
<propertycopyIf
name="ftp.password"
from="${sf.projectName}.ftp.password"
/>
</target>
<target
name="sf.deploy"
depends=""
if="ftp.hostName"
description="Pushes the latest compiled application .apk on a FTP server."
>
<if>
<equals
arg1="${sf.useMaven}"
arg2="true"
/>
<then>
<artifact:pom
id="pom"
file="pom.xml"
/>
<property
name="binary.filePath"
location="target/${pom.artifactId}-${pom.version}-aligned.apk"
/>
</then>
<else>
<if>
<isset property="binary.filePath"/>
<else>
<property
name="binary.filePath"
location="bin/${projectPrefix}.apk"
/>
<if>
<available file="bin/${projectPrefix}-android-release.apk"/>
<then>
<copy
file="bin/${projectPrefix}-android-release.apk"
toFile="${binary.filePath}"
/>
</then>
<else>
<copy
file="bin/${projectPrefix}-android-unsigned.apk"
toFile="${binary.filePath}"
/>
</else>
</if>
</else>
</if>
</else>
</if>
<if>
<not>
<isset property="ftp.directoryName"/>
</not>
<then>
<stringutil
property="ftp.directoryName"
string="${projectPrefix}"
>
<lowercase/>
</stringutil>
</then>
</if>
<property
name="deployedBinary.fileName"
value="${projectPrefix}.apk"
/>
<copy
file="${binary.filePath}"
toFile="${temporary.directoryPath}/${deployedBinary.fileName}"
overwrite="true"
/>
<ftp
action="send"
binary="yes"
ignoreNoncriticalErrors="true"
remotedir="${ftp.directoryName}"
server="${ftp.hostName}"
userid="${ftp.login}"
password="${ftp.password}"
verbose="yes"
>
<fileset file="${temporary.directoryPath}/${deployedBinary.fileName}"/>
</ftp>
</target>
<!-- -->
<!-- Place here newly created and project specific targets -->
<!-- -->
</project>