-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
33 lines (25 loc) · 1.27 KB
/
build.xml
File metadata and controls
33 lines (25 loc) · 1.27 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
<project name="bidder-build" default="deploy" basedir=".">
<property name="common" location="source" />
<property name="integration" location="classes" />
<property name="common-dist" location="common/dist" />
<target name="deploy"
description="deploys the bidder-framework jar and the example servlets based off of a properties file"
depends="dist">
</target>
<target name="dist"
description="dists or jars up the stuff in the framework and the example integrations like tomcat">
<ant antfile="build.xml" dir="common" target="dist" />
<copy todir="integration/tomcat/lib">
<fileset dir="common/dist" />
</copy>
<ant antfile="build.xml" dir="integration/tomcat" target="war-up" />
<ant antfile="build.xml" dir="ReadyMonitor" target="dist" />
<ant antfile="build.xml" dir="RequestMaker" target="dist" />
</target>
<target name="clean" description="calls clean on the common and integration directories">
<ant antfile="build.xml" dir="common" target="clean" />
<ant antfile="build.xml" dir="integration/tomcat" target="clean" />
<ant antfile="build.xml" dir="ReadyMonitor" target="clean" />
<ant antfile="build.xml" dir="RequestMaker" target="clean" />
</target>
</project>