forked from shotgunsoftware/java-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
31 lines (29 loc) · 1 KB
/
build.xml
File metadata and controls
31 lines (29 loc) · 1 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
<?xml version="1.0"?>
<project default="jar">
<path id="java-api.classpath">
<pathelement location="classes"/>
<pathelement location="lib/ws-commons-util-1.0.2.jar"/>
<pathelement location="lib/xmlrpc-client-3.1.3.jar"/>
<pathelement location="lib/xmlrpc-common-3.1.3.jar"/>
<pathelement location="lib/ws-commons-java5-1.0.1.jar"/>
</path>
<target name="clean">
<delete dir="classes"/>
</target>
<target depends="clean" name="compile">
<mkdir dir="classes"/>
<javac srcdir="src" destdir="classes" executable=" /sw/os/swhouse/javajdk_1.4/bin/javac" compiler="javac1.4" source="1.4" target="1.4">
<classpath refid="java-api.classpath"/>
</javac>
</target>
<target depends="compile" name="jar">
<jar destfile="shotgun_client.jar">
<fileset dir="classes">
<include name="com/shotgunsoftware/*.class"/>
</fileset>
<manifest>
<attribute name="Built-By" value="${user.name}"/>
</manifest>
</jar>
</target>
</project>