This repository has been archived by the owner on Sep 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.xml
43 lines (38 loc) · 1.6 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
<project name="TopiaryExplorer" default="jar">
<target name="compile"
description="Compile the main source">
<mkdir dir="build/classes" />
<path id="compile.path">
<fileset dir="lib" includes="*.jar" />
</path>
<javac debug="on" target="1.6"
classpathref="compile.path"
srcdir="src" destdir="build/classes"
/>
</target>
<target name="jar" depends="compile"
description="Construct a jar ">
<mkdir dir="build" />
<jar jarfile="topiaryexplorer1.0.jar">
<fileset dir="build/classes" />
<fileset dir="src/images/">
<include name="**/*.gif" />
<include name="**/*.png" />
</fileset>
<manifest>
<attribute name="Main-Class" value="topiaryexplorer.TopiaryExplorer" />
<attribute name="Class-Path" value="lib/guava-r09.jar lib/core.jar lib/gluegen-rt-natives-linux-amd64.jar lib/gluegen-rt-natives-linux-i586.jar lib/gluegen-rt-natives-macosx-ppc.jar lib/gluegen-rt-natives-macosx-universal.jar lib/gluegen-rt-natives-windows-amd64.jar lib/gluegen-rt-natives-windows-i586.jar lib/gluegen-rt.jar lib/itext.jar lib/jogl.jar lib/opengl.jar lib/pdf.jar lib/mysql-connector-java-5.1.10-bin.jar lib/javaws.jar lib/ojdbc14.jar lib/classes12.jar lib/jsoup-1.6.1.jar" />
</manifest>
</jar>
<!-- <jar jarfile="pcoaserver.jar">
<fileset dir="build/classes" />
<manifest>
<attribute name="Main-Class" value="pcoaserver.PcoaServer" />
</manifest>
</jar> -->
</target>
<target name="clean">
<delete dir="build" />
<delete file="topiaryexplorer1.0.jar" />
</target>
</project>