forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-common-web.xml
156 lines (140 loc) · 3.54 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
<?xml version="1.0"?>
<project name="build-common-web" xmlns:antelope="antlib:ise.antelope.tasks" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
<import file="build-common.xml" />
<macrodef name="manifest-macro">
<sequential>
<mkdir dir="docroot/WEB-INF/classes/META-INF" />
<manifest file="docroot/WEB-INF/classes/META-INF/MANIFEST.MF" mode="update">
<attribute name="Extension-List" value="crypto" />
<attribute name="crypto-Extension-Name" value="javax.crypto" />
</manifest>
</sequential>
</macrodef>
<target name="clean">
<delete dir="docroot/WEB-INF/classes" />
<delete failonerror="false" file="${war.file}.war" />
<delete>
<fileset
dir="docroot"
includes="**/.sprite.png"
/>
<fileset
dir="docroot"
includes="**/.sprite.properties"
/>
<fileset
dir="docroot"
includes="**/Thumbs.db"
/>
</delete>
</target>
<target name="deploy">
<manifest-macro />
<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="jboss" />
<equals arg1="${app.server.type}" arg2="wildfly" />
</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
preservelastmodified="true"
todir="${war.file.dest}"
>
<fileset
dir="tmp"
/>
</copy>
</then>
<elseif>
<available file="docroot" type="dir" />
<then>
<copy
preservelastmodified="true"
todir="${war.file.dest}"
>
<fileset
dir="docroot"
>
<exclude name="**/css/*.scss" />
</fileset>
<filtermapper>
<replacestring from=".sass-cache" to="" />
</filtermapper>
</copy>
</then>
</elseif>
<else>
<unwar dest="${war.file.dest}" src="${war.file}.war" />
</else>
</if>
</else>
</if>
<if>
<or>
<equals arg1="${app.server.type}" arg2="jboss" />
<equals arg1="${app.server.type}" arg2="wildfly" />
</or>
<then>
<echo file="${war.file.dest}.dodeploy" />
</then>
</if>
</target>
<target depends="war" name="install-portal-release">
<install-portal-artifact packaging="war" />
</target>
<target depends="war" name="install-portal-snapshot">
<install-portal-artifact packaging="war" snapshot="true" />
</target>
<target name="publish-portal-release">
<publish-portal-artifact packaging="war" targets="war" />
</target>
<target name="publish-portal-snapshot">
<publish-portal-artifact packaging="war" snapshot="true" targets="war" />
</target>
<target name="war">
<manifest-macro />
<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>