-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
33 lines (26 loc) · 1.01 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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- The main build file. It merely imports the other files in the 'ant' directory. -->
<project name="RefBank" default="all" basedir="." >
<include file="ant/config.ant" />
<include file="ant/import.ant" />
<include file="ant/dir.ant" />
<include file="ant/javac.ant" />
<include file="ant/dist.ant" />
<target name="all" depends="import,clean,compile,pack">
<!--<input message="Press Enter to start Tomcat.." />-->
</target>
<target name="clean" description="remove all auto generated files" >
<antcall target="dir.clean" />
</target>
<target name="compile" description="do the compilation" >
<antcall target="javac.compile" />
</target>
<target name="import" description="fetch stuff from other projects if present">
<antcall target="import.fetch" />
</target>
<target name="pack" depends="compile" description="pack the webapp">
<antcall target="dir.copybasejars" />
<antcall target="dist.zip" />
<antcall target="dist.manager" />
</target>
</project>