forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-common-java.xml
362 lines (310 loc) · 11.7 KB
/
build-common-java.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
<?xml version="1.0"?>
<project name="build-common-java" xmlns:antelope="antlib:ise.antelope.tasks" xmlns:artifact="antlib:org.apache.maven.artifact.ant" xmlns:if="ant:if" xmlns:unless="ant:unless">
<import file="build-common.xml" />
<condition else="${project.dir}/portal-impl/classes" property="portal-impl.classes.dir" value="${project.dir}/portal-web/docroot/WEB-INF/classes">
<and>
<equals arg1="${app.server.type}" arg2="tomcat" />
<antelope:endswith string="${app.server.portal.dir}" with="/portal-web/docroot" />
</and>
</condition>
<target name="clean">
<delete dir="classes" />
<delete dir="test-classes" />
<delete dir="test-coverage" />
<delete dir="test-results" />
<delete dir="woven-classes" />
<delete dir="${doc.dir}/${ant.project.name}/javadocs" />
<delete failonerror="false" file="${deploy.dir}/${jar.file}.jar" />
<delete failonerror="false" file="${jar.file}.jar" />
<delete failonerror="false" file="${jar.file}-javadoc.jar" />
<delete failonerror="false" file="${jar.file}-sources.jar" />
</target>
<target depends="init-compile" name="compile" unless="compile.uptodate">
<property name="javac.destdir" value="classes" />
<property name="javac.srcdir" value="src" />
<property name="javac.classpathref" value="project.classpath" />
<copy preservelastmodified="true" todir="${javac.destdir}">
<fileset dir="${javac.srcdir}" excludes="**/*.java" />
</copy>
<if>
<equals arg1="${javac.deprecation}" arg2="on" />
<then>
<record action="start" name="${project.dir}/${ant.project.name}/javac.output.txt" />
</then>
</if>
<javac
classpathref="${javac.classpathref}"
compiler="${javac.compiler}"
debug="${javac.debug}"
deprecation="${javac.deprecation}"
destdir="${javac.destdir}"
encoding="${javac.encoding}"
includeAntRuntime="false"
nowarn="${javac.nowarn}"
srcdir="${javac.srcdir}"
/>
<if>
<equals arg1="${javac.deprecation}" arg2="on" />
<then>
<record action="stop" name="${project.dir}/${ant.project.name}/javac.output.txt" />
<loadfile property="javac.output.txt.content" srcfile="${project.dir}/${ant.project.name}/javac.output.txt" />
<delete file="${project.dir}/${ant.project.name}/javac.output.txt" />
<if>
<or>
<contains string="${javac.output.txt.content}" substring="a deprecated API" />
<contains string="${javac.output.txt.content}" substring="[deprecation]" />
</or>
<then>
<echo append="true" file="${project.dir}/javac.output.txt" message="${line.separator}${ant.project.name}${line.separator}" />
<echo append="true" file="${project.dir}/javac.output.txt" message="${javac.output.txt.content}" />
</then>
</if>
</then>
</if>
<echo file="${javac.destdir}/.touch"></echo>
</target>
<target depends="init-deploy,jar" if="${copy.jar}" name="deploy" unless="deploy.uptodate">
<copy file="${jar.file}.jar" preservelastmodified="true" todir="${deploy.dir}" />
</target>
<target name="init-compile">
<condition property="compile.uptodate">
<uptodate targetfile="classes/.touch">
<srcfiles dir="${basedir}" includes="bnd.bnd,build.xml,ivy.xml,src/**/*.*" />
</uptodate>
</condition>
</target>
<target depends="jar" name="init-deploy">
<property name="copy.jar" value="true" />
<property name="src.dir" value="${basedir}" />
<condition property="deploy.uptodate">
<uptodate srcfile="${jar.file}.jar" targetfile="${deploy.dir}/${jar.file}.jar" />
</condition>
</target>
<target depends="compile" name="init-jar">
<condition property="jar.uptodate">
<uptodate targetfile="${jar.file}.jar">
<srcfiles dir="${basedir}" includes="bnd.bnd,build.xml,ivy.xml,src/**/*.*" />
</uptodate>
</condition>
</target>
<target depends="jar,jar-sources" name="install-portal-release">
<install-portal-artifact>
<attach classifier="sources" file="${artifact.name}-sources.jar" />
</install-portal-artifact>
</target>
<target depends="jar,jar-sources" name="install-portal-snapshot">
<install-portal-artifact snapshot="true">
<attach classifier="sources" file="${artifact.name}-sources.jar" />
</install-portal-artifact>
</target>
<target depends="compile,init-jar" name="jar" unless="jar.uptodate">
<if>
<available file="bnd.bnd" />
<then>
<manifest-helper />
<bndexpand propertyfile="${project.dir}/common.bnd" />
<bnd eclipse="false" exceptions="true" failok="false" inherit="true" output="${jar.file}.jar">
<bndfiles>
<fileset dir=".">
<include name="bnd.bnd" />
</fileset>
</bndfiles>
<classpath>
<pathelement location="classes" />
</classpath>
<property name="-sourcepath" value="." />
</bnd>
<var name="-baseline" unset="true" />
<if>
<not>
<equals arg1="${baseline.jar.report.level}" arg2="off" />
</not>
<then>
<loadproperties srcFile="bnd.bnd">
<filterchain>
<linecontains>
<contains value="-baseline" />
</linecontains>
</filterchain>
</loadproperties>
</then>
</if>
<if>
<isset property="-baseline" />
<then>
<antelope:stringutil property="baseline.file.beginindex" string="${-baseline}">
<indexof string="=" />
</antelope:stringutil>
<math
datatype="int"
operand1="${baseline.file.beginindex}"
operand2="1"
operation="+"
result="baseline.file.beginindex"
/>
<antelope:stringutil property="baseline.file" string="${-baseline}">
<substring beginindex="${baseline.file.beginindex}" />
</antelope:stringutil>
<var name="-baseline" unset="true" />
<antelope:stringutil property="baseline.file.name.beginindex" string="${baseline.file}">
<lastindexof string="/" />
</antelope:stringutil>
<math
datatype="int"
operand1="${baseline.file.name.beginindex}"
operand2="1"
operation="+"
result="baseline.file.name.beginindex"
/>
<antelope:stringutil property="baseline.file.name.endindex" string="${baseline.file}">
<lastindexof string="-" />
</antelope:stringutil>
<antelope:stringutil property="baseline.file.name" string="${baseline.file}">
<substring beginindex="${baseline.file.name.beginindex}" endindex="${baseline.file.name.endindex}" />
</antelope:stringutil>
<math
datatype="int"
operand1="${baseline.file.name.endindex}"
operand2="1"
operation="+"
result="baseline.file.version.beginindex"
/>
<antelope:stringutil property="baseline.file.version.endindex" string="${baseline.file}">
<lastindexof string="." />
</antelope:stringutil>
<antelope:stringutil property="baseline.file.version" string="${baseline.file}">
<substring beginindex="${baseline.file.version.beginindex}" endindex="${baseline.file.version.endindex}" />
</antelope:stringutil>
<mirrors-get
dest="${baseline.file}"
src="${baseline.jar.url}/com/liferay/portal/${baseline.file.name}/${baseline.file.version}/${baseline.file.name}-${baseline.file.version}.jar"
/>
</then>
</if>
<baseline-jar
bndFile="bnd.bnd"
bndRootFile="${project.dir}/common.bnd"
newJarFile="${jar.file}.jar"
/>
</then>
<else>
<antcall target="manifest" />
<jar
basedir="classes"
jarfile="${jar.file}.jar"
manifest="classes/META-INF/MANIFEST.MF"
/>
</else>
</if>
</target>
<target depends="javadoc" name="jar-javadoc">
<jar
basedir="${doc.dir}/${ant.project.name}/javadocs"
jarfile="${jar.file}-javadoc.jar"
/>
</target>
<target name="jar-sources">
<jar
basedir="src"
jarfile="${jar.file}-sources.jar"
/>
</target>
<target name="javadoc">
<mkdir dir="${doc.dir}/${ant.project.name}/javadocs" />
<javadoc
breakiterator="yes"
classpathref="project.classpath"
destdir="${doc.dir}/${ant.project.name}/javadocs"
encoding="UTF-8"
maxmemory="2048m"
packagenames="*.*"
sourcepath="src"
stylesheetfile="${project.dir}/tools/styles/javadoc.css"
useexternalfile="yes"
>
<arg line="-quiet -tag generated" />
</javadoc>
</target>
<target name="manifest">
<if>
<not>
<available file="classes/META-INF/MANIFEST.MF" />
</not>
<then>
<manifest-helper analyze="true" />
<mkdir dir="classes/META-INF" />
<tstamp>
<format pattern="EEE MMM d HH:mm:ss z yyyy" property="build.time" />
</tstamp>
<manifest file="classes/META-INF/MANIFEST.MF">
<attribute name="Bundle-ManifestVersion" value="2" />
<attribute name="Bundle-RequiredExecutionEnvironment" value="J2SE-1.5" />
<attribute name="Bundle-Vendor" value="${release.info.vendor}" />
<attribute name="Bundle-Version" value="${artifact.version}" />
<attribute name="Export-Package" value="${export.packages}" />
<attribute name="Import-Package" value="${import.packages}" />
<attribute name="Javac-Compiler" value="${javac.compiler}" />
<attribute name="Javac-Debug" value="${javac.debug}" />
<attribute name="Javac-Deprecation" value="${javac.deprecation}" />
<attribute name="Javac-Encoding" value="${javac.encoding}" />
<attribute name="Jsp-Precompile" value="${jsp.precompile}" />
<attribute name="Liferay-Portal-Build-Date" value="${release.info.build.date}" />
<attribute name="Liferay-Portal-Build-Number" value="${release.info.build.number}" />
<attribute name="Liferay-Portal-Build-Revision" value="${build.revision}" />
<attribute name="Liferay-Portal-Build-Time" value="${build.time}" />
<attribute name="Liferay-Portal-Code-Name" value="${release.info.code.name}" />
<attribute name="Liferay-Portal-Parent-Build-Number" value="${release.info.parent.build.number}" />
<attribute name="Liferay-Portal-Release-Info" value="${release.info.release.info}" />
<attribute name="Liferay-Portal-Server-Info" value="${release.info.server.info}" />
<attribute name="Liferay-Portal-Version" value="${release.info.version}" />
</manifest>
<if>
<and>
<isset property="manifest.bundle.name" />
<isset property="manifest.bundle.symbolic.name" />
</and>
<then>
<manifest file="classes/META-INF/MANIFEST.MF" mode="update">
<attribute name="Bundle-Name" value="${manifest.bundle.name}" />
<attribute name="Bundle-SymbolicName" value="${manifest.bundle.symbolic.name}" />
</manifest>
</then>
</if>
<if>
<isset property="manifest.premain.class" />
<then>
<manifest file="classes/META-INF/MANIFEST.MF" mode="update">
<attribute name="Can-Redefine-Classes" value="${manifest.can.redefine.classes}" />
<attribute name="Can-Retransform-Classes" value="${manifest.can.retransform.classes}" />
<attribute name="Premain-Class" value="${manifest.premain.class}" />
</manifest>
</then>
</if>
</then>
</if>
</target>
<target depends="jar,jar-javadoc,jar-sources" name="publish-portal-release">
<publish-portal-artifact >
<attach classifier="javadoc" file="${artifact.name}-javadoc.jar" />
<attach classifier="sources" file="${artifact.name}-sources.jar" />
</publish-portal-artifact>
</target>
<target depends="jar,jar-javadoc,jar-sources" name="publish-portal-snapshot">
<publish-portal-artifact snapshot="true">
<attach classifier="javadoc" file="${artifact.name}-javadoc.jar" />
<attach classifier="sources" file="${artifact.name}-sources.jar" />
</publish-portal-artifact>
</target>
<target depends="jar" name="release">
<if>
<available file="bnd.bnd" />
<then>
<bndexpand propertyfile="${project.dir}/common.bnd" />
<release-to-repo
bndRootFile="${project.dir}/common.bnd"
file="${jar.file}.jar"
/>
</then>
</if>
</target>
</project>