-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
36 lines (28 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- The main build file. It merely imports the other files in the 'ant' directory. -->
<project name="GoldenGATE-Editor" default="all" basedir="." >
<include file="ant/config.ant" />
<include file="ant/dir.ant" />
<include file="ant/javac.ant" />
<include file="ant/dist.ant" />
<include file="ant/import.ant" />
<target name="all" depends="dirs,clean,jars,compile,zips">
<!--<input message="Press Enter to start Tomcat.." />-->
</target>
<target name="clean" description="remove all auto generated files" >
<antcall target="dir.clean" />
</target>
<target name="jars" description="get base jar files" >
<antcall target="import.fetch" />
</target>
<target name="dirs" description="remove all auto generated files" >
<antcall target="dir.mkdirs" />
</target>
<target name="compile" description="do the compilation" >
<antcall target="javac.compile" />
</target>
<target name="zips" description="pack the jar files" >
<antcall target="dir.copyjars" />
<antcall target="dist.zips" />
</target>
</project>