forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
51 lines (45 loc) · 1.48 KB
/
build.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
<?xml version="1.0"?>
<project name="filters" basedir="." default="compile">
<target name="clean">
<ant dir="compression" target="clean" />
<ant dir="doubleclick" target="clean" />
<ant dir="secure" target="clean" />
<ant dir="sso" target="clean" />
<ant dir="strip" target="clean" />
</target>
<target name="compile">
<ant dir="compression" target="compile" />
<ant dir="doubleclick" target="compile" />
<ant dir="secure" target="compile" />
<ant dir="sso" target="compile" />
<ant dir="strip" target="compile" />
</target>
<target name="jar">
<ant dir="compression" target="jar" />
<ant dir="doubleclick" target="jar" />
<ant dir="secure" target="jar" />
<ant dir="sso" target="jar" />
<ant dir="strip" target="jar" />
</target>
<target name="java2html">
<ant dir="compression" target="java2html" />
<ant dir="doubleclick" target="java2html" />
<ant dir="secure" target="java2html" />
<ant dir="sso" target="java2html" />
<ant dir="strip" target="java2html" />
</target>
<target name="javadoc">
<ant dir="compression" target="javadoc" />
<ant dir="doubleclick" target="javadoc" />
<ant dir="secure" target="javadoc" />
<ant dir="sso" target="javadoc" />
<ant dir="strip" target="javadoc" />
</target>
<target name="deploy">
<ant dir="compression" target="deploy" />
<ant dir="doubleclick" target="deploy" />
<ant dir="secure" target="deploy" />
<ant dir="sso" target="deploy" />
<ant dir="strip" target="deploy" />
</target>
</project>