forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-common-web.xml
186 lines (166 loc) · 5.03 KB
/
build-common-web.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
<?xml version="1.0"?>
<project name="build-common-web" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-common.xml" />
<target name="clean">
<delete dir="docroot/WEB-INF/classes" />
<delete file="${war.file}.war" failonerror="false" />
<delete>
<fileset dir="docroot" includes="**/.sprite.png" />
<fileset dir="docroot" includes="**/.sprite.properties" />
<fileset dir="docroot" includes="**/Thumbs.db" />
</delete>
</target>
<target name="compile">
<if>
<available file="docroot/WEB-INF/src" />
<then>
<if>
<available file="tmp" type="dir" />
<then>
<property name="compile.file.dest" value="tmp/WEB-INF/classes" />
</then>
<else>
<property name="compile.file.dest" value="docroot/WEB-INF/classes" />
</else>
</if>
<mkdir dir="${compile.file.dest}" />
<copy todir="${compile.file.dest}">
<fileset dir="docroot/WEB-INF/src" excludes="**/*.java" />
</copy>
<javac
classpathref="web.classpath"
compiler="${javac.compiler}"
debug="${javac.debug}"
deprecation="${javac.deprecation}"
destdir="${compile.file.dest}"
encoding="${javac.encoding}"
includeAntRuntime="false"
nowarn="${javac.nowarn}"
srcdir="docroot/WEB-INF/src"
/>
</then>
</if>
<mkdir dir="docroot/WEB-INF/classes/META-INF" />
<manifest file="docroot/WEB-INF/classes/META-INF/MANIFEST.MF">
<attribute name="Extension-List" value="crypto" />
<attribute name="crypto-Extension-Name" value="javax.crypto" />
</manifest>
</target>
<target name="deploy" depends="compile">
<if>
<equals arg1="${war.file}" arg2="portal-web" />
<then>
<property name="war.file.dest" value="${app.server.portal.dir}" />
</then>
<else>
<if>
<or>
<equals arg1="${app.server.type}" arg2="geronimo" />
<equals arg1="${app.server.type}" arg2="glassfish" />
<equals arg1="${app.server.type}" arg2="jboss" />
<equals arg1="${app.server.type}" arg2="jonas" />
</or>
<then>
<property name="war.file.dest" value="${app.server.deploy.dir}/${war.file}.war" />
</then>
<else>
<property name="war.file.dest" value="${app.server.deploy.dir}/${war.file}" />
</else>
</if>
</else>
</if>
<if>
<and>
<equals arg1="${war.file}" arg2="portal-web" />
<equals arg1="${app.server.type}" arg2="tomcat" />
<antelope:endswith string="${app.server.portal.dir}" with="/portal-web/docroot" />
</and>
<then>
</then>
<else>
<if>
<available file="${war.file.dest}" type="file" />
<then>
<delete file="${war.file.dest}" />
</then>
</if>
<if>
<available file="tmp" type="dir" />
<then>
<copy todir="${war.file.dest}" preservelastmodified="true">
<fileset dir="tmp" />
</copy>
</then>
<elseif>
<available file="docroot" type="dir" />
<then>
<copy todir="${war.file.dest}" preservelastmodified="true">
<fileset dir="docroot" excludes="/html/js/editor/_fckeditor/**,/html/themes/*/_diffs/**" />
</copy>
</then>
</elseif>
<else>
<unwar src="${war.file}.war" dest="${war.file.dest}" />
</else>
</if>
</else>
</if>
<if>
<and>
<equals arg1="${app.server.major.version}" arg2="7" />
<equals arg1="${app.server.type}" arg2="jboss" />
</and>
<then>
<echo file="${war.file.dest}.dodeploy" />
</then>
</if>
<if>
<and>
<equals arg1="${app.server.type}" arg2="glassfish" />
<available file="${war.file.dest}" type="dir" />
<not>
<equals arg1="${war.file}" arg2="portal-web" />
</not>
</and>
<then>
<tstamp>
<format property="tstamp.value" pattern="yyyyMMddkkmmssSSS" />
</tstamp>
<jar
basedir="${war.file.dest}"
jarfile="${tstamp.value}"
/>
<delete dir="${war.file.dest}" />
<move file="${tstamp.value}" tofile="${war.file.dest}" />
</then>
</if>
<if>
<equals arg1="${app.server.type}" arg2="jonas" />
<then>
<delete file="${war.file.dest}/META-INF/context.xml" />
</then>
</if>
<if>
<equals arg1="${app.server.type}" arg2="resin" />
<then>
<replace file="${war.file.dest}/WEB-INF/web.xml">
<replacetoken><![CDATA[<web-app metadata-complete="true" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">]]></replacetoken>
<replacevalue><![CDATA[<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">]]></replacevalue>
</replace>
</then>
</if>
</target>
<target name="war" depends="compile">
<if>
<available file="docroot" />
<then>
<war
basedir="docroot"
destfile="${war.file}.war"
excludes="WEB-INF/web.xml"
webxml="docroot/WEB-INF/web.xml"
/>
</then>
</if>
</target>
</project>