forked from liferay/liferay-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-common-plugins.xml
62 lines (50 loc) · 1.62 KB
/
build-common-plugins.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
<?xml version="1.0"?>
<project name="build-common-plugins" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-common.xml" />
<target name="clean">
<antcall target="loop-modules">
<param name="loop.modules.cmd" value="clean-module" />
</antcall>
</target>
<target name="clean-module">
<ant dir="${module.name}" target="clean" inheritAll="false" />
</target>
<target name="compile">
<antcall target="loop-modules">
<param name="loop.modules.cmd" value="compile-module" />
</antcall>
</target>
<target name="compile-module">
<ant dir="${module.name}" target="compile" inheritAll="false" />
</target>
<target name="war">
<antcall target="loop-modules">
<param name="loop.modules.cmd" value="war-module" />
</antcall>
</target>
<target name="war-module">
<ant dir="${module.name}" target="war" inheritAll="false" />
</target>
<target name="deploy">
<antcall target="loop-modules">
<param name="loop.modules.cmd" value="deploy-module" />
</antcall>
</target>
<target name="deploy-module">
<ant dir="${module.name}" target="deploy" inheritAll="false" />
</target>
<target name="loop-modules">
<for param="module.name">
<path>
<dirset dir="." excludes="${plugins.excludes}" includes="${plugins.includes}" />
</path>
<sequential>
<antelope:stringutil string="@{module.name}" property="module.name.unix">
<replace regex="\\" replacement="/" />
</antelope:stringutil>
<antelope:grep in="${module.name.unix}" regex="(.*/)(.*)" group="2" property="module.name" />
<antcall target="${loop.modules.cmd}" />
</sequential>
</for>
</target>
</project>