-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
122 lines (98 loc) · 3.24 KB
/
build.xml
File metadata and controls
122 lines (98 loc) · 3.24 KB
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
<project name="spring_delay_filter" default="default" basedir=".">
<description>
spring_delay_filter
</description>
<tstamp prefix="start"/>
<property file="override.properties"/>
<!-- system properties to use -->
<property name= "cr" value="${line.separator}"/>
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="classes" location="classes"/>
<property name="lib" location="lib"/>
<property name="distrib" location="distrib"/>
<target name="init" description="create timestamp and directories">
<echo>Init...</echo>
<tstamp/>
<mkdir dir="${classes}"/>
<mkdir dir="${lib}"/>
<mkdir dir="${distrib}"/>
</target>
<!--
==========================
Compile the code
==========================
-->
<target name="compile" depends="init" description="compile the source " >
<echo>Compiling ...</echo>
<javac debug="true" debuglevel="lines,vars,source" srcdir="${src}" destdir="${classes}" includeantruntime="false" >
<classpath id="cpath">
<fileset dir="${tomcatlib}" includes="*.jar"/>
<fileset dir="${webapplib}" includes="*.jar"/>
</classpath>
</javac>
</target>
<!-- ==========================
Copy additional files
==========================
-->
<target name="copy" depends="compile" description="copy images etc to classes directory" >
<echo>Copying images etc to classes directory...</echo>
<copy todir="${classes}">
<fileset
dir="${src}"
includes="**/*.png,**/*.xml,**/*.properties"/>
</copy>
</target>
<!--
==========================
library
==========================
-->
<target name="jar" depends="compile, copy" description="generate the spring_delay_filter library jar">
<echo>Generating the jar ...</echo>
<jar
jarfile="${lib}/spring_delay_filter.jar"
basedir="${classes}"
includes="**/*"/>
</target>
<!--
==========================
distrib
==========================
-->
<target name="distrib" depends="jar" description="Create the distribution package..." >
<echo>Copying libraries to distrib directory...</echo>
<copy todir="${distrib}">
<fileset
dir="${lib}"
includes="**/*.jar"/>
</copy>
</target>
<!--
==========================
deploy
==========================
-->
<target name="deploy" depends="distrib" description="Deploy distribution..." >
<echo>deploying todir "${deploydir1}" ...</echo>
<copy todir="${deploydir1}">
<fileset dir="${distrib}" includes="**/*.*" />
</copy>
</target>
<!--
==========================
Default target: all
==========================
-->
<target name="default" depends="deploy" description="default = build all"/>
<!--
==========================
C L E A N
==========================
-->
<target name="clean" description="clean up generated files" >
<delete dir="${classes}"/>
<delete dir="${lib}"/>
</target>
</project>