-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
executable file
·154 lines (120 loc) · 5.59 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
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
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="JPublish" default="jar" basedir=".">
<property file="build.properties"/>
<!-- Setup module paths -->
<property name="module.dir" value="${root.dir}/modules"/>
<path id="build.classpath">
<fileset dir="${lib.dir}">
<include name="**/*.jar"/>
</fileset>
</path>
<!-- ==================================================== -->
<!-- Initialize Ant -->
<!-- ==================================================== -->
<target name="init">
<tstamp/>
<mkdir dir="${build.dir}"/>
<mkdir dir="${dist.dir}"/>
</target>
<!-- Compiler resources -->
<patternset id="compiler.resources">
<include name="**/?*.properties"/>
<include name="**/?*.xml"/>
<include name="**/?*.vm"/>
</patternset>
<!-- ====================================================================== -->
<!-- Compile the source code. -->
<!-- ====================================================================== -->
<target name="compile" depends="init">
<mkdir dir="${build.classes}"/>
<javac
srcdir="${src.dir}"
destdir="${build.classes}"
classpathref="build.classpath"
debug="${javac.debug}"
deprecation="${javac.deprecation}"
optimize="${javac.optimize}">
<include name="**/*.java"/>
</javac>
<copy todir="${build.classes}">
<fileset dir="${src.dir}">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<!-- ====================================================================== -->
<!-- Create the JAR archive. -->
<!-- ====================================================================== -->
<target name="jar" depends="compile">
<jar jarfile="${dist.dir}/${Name}-${version}.jar" basedir="${build.classes}">
<include name="**/*.class"/>
<include name="**/?*.properties"/>
<include name="**/?*.xml"/>
<include name="**/?*.vm"/>
</jar>
<copy file="license.txt" tofile="${dist.dir}/${Name}-${version}.license.txt"/>
</target>
<!-- ====================================================================== -->
<!-- Create the demo web apps archive. -->
<!-- ====================================================================== -->
<target name="samples" depends="jar">
<echo message="Building the JPublish web demo applications:"/>
<echo message="... hello.war"/>
<copy todir="${build.samples}/hello.war">
<fileset dir="${samples.dir}/hello.war" includes="**/*.*"/>
</copy>
<copy todir="${build.samples}/hello.war/WEB-INF/lib">
<fileset dir="${lib.dir}">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${dist.dir}">
<include name="**/*.*"/>
</fileset>
</copy>
</target>
<!-- ====================================================================== -->
<!-- Create an empty JPublish web application. -->
<!-- ====================================================================== -->
<target name="empty-web-app" depends="jar">
<echo message="Building an empty JPublish web applications:"/>
<echo message="... empty.war"/>
<copy todir="${build.samples}/empty.war">
<fileset dir="${samples.dir}/empty.war" includes="**/*.*"/>
</copy>
<copy todir="${build.samples}/empty.war/WEB-INF/lib">
<fileset dir="${lib.dir}">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${dist.dir}">
<include name="**/*.*"/>
</fileset>
</copy>
</target>
<!-- ====================================================================== -->
<!-- Generate the API documentation. -->
<!-- ====================================================================== -->
<target name="javadocs" depends="init">
<mkdir dir="${build.javadocs}"/>
<javadoc
packagenames="${packages}"
sourcepath="${src.dir}"
destdir="${build.javadocs}"
classpathref="build.classpath"
author="${javadoc.author}"
version="${javadoc.version}"
windowtitle="${vName} API"
doctitle="${vName}"
bottom="${copyright}"/>
</target>
<!-- ====================================================================== -->
<!-- Execute the JUnit tests -->
<!-- ====================================================================== -->
<!-- ====================================================================== -->
<!-- Clean up generated stuff -->
<!-- ====================================================================== -->
<target name="clean">
<delete dir="${build.dir}"/>
<delete dir="${dist.dir}"/>
</target>
</project>