-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
build-common-java.xml
255 lines (222 loc) · 8.03 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
<?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="build" />
<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="download-latest-artifact,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>
<javac
classpathref="${javac.classpathref}"
compiler="${javac.compiler}"
debug="${javac.debug}"
deprecation="${javac.deprecation}"
destdir="${javac.destdir}"
encoding="${javac.encoding}"
includeAntRuntime="false"
nowarn="${javac.nowarn}"
source="${ant.build.javac.source}"
srcdir="${javac.srcdir}"
target="${ant.build.javac.target}"
/>
<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="download-latest-artifact" unless="${build.portal.artifacts.enabled}">
<download-latest-artifact destfile="${jar.file}.jar" />
<property name="compile.uptodate" value="true" />
</target>
<target if="${build.portal.artifacts.enabled}" 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>
<generate-pom-info />
<manifest-helper />
<bnd-invoker output="${jar.file}.jar" />
<if>
<not>
<equals arg1="${baseline.jar.report.level}" arg2="off" />
</not>
<then>
<gradle-execute forcedcacheenabled="false" task="baseline" />
</then>
</if>
</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 />
<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="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-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}" />
<attribute name="Liferay-Portal-Version-Display-Name" value="${release.info.version.display.name}" />
</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 name="publish-portal-release">
<publish-portal-artifact targets="jar,jar-javadoc,jar-sources">
<attach classifier="javadoc" file="${artifact.name}-javadoc.jar" />
<attach classifier="sources" file="${artifact.name}-sources.jar" />
</publish-portal-artifact>
</target>
<target name="publish-portal-snapshot">
<publish-portal-artifact snapshot="true" targets="jar,jar-javadoc,jar-sources">
<attach classifier="javadoc" file="${artifact.name}-javadoc.jar" />
<attach classifier="sources" file="${artifact.name}-sources.jar" />
</publish-portal-artifact>
</target>
</project>