forked from laurent-clouet/sheepit-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
69 lines (60 loc) · 2.73 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0"?>
<project name="sheepit-renderfarm-client" default="client">
<property name="compile.debug" value="true"/>
<property name="compile.deprecation" value="true"/>
<property name="compile.optimize" value="true"/>
<property name="compile.version" value="1.7"/>
<property name="compile.release" value="5.0.0"/>
<target name="precompile">
<antcall target="clean" />
<mkdir dir="build"/>
<mkdir dir="bin"/>
<echo file="build/VERSION" message="${compile.release}" />
</target>
<target name="client">
<antcall target="precompile" />
<javac srcdir="src"
destdir="build"
target="${compile.version}"
source="${compile.version}"
debug="${compile.debug}"
optimize="${compile.optimize}"
deprecation="${compile.deprecation}"
includes="**">
<classpath>
<pathelement location="extern/platform.jar"/>
<pathelement location="extern/jna.jar"/>
<pathelement location="extern/args4j.jar"/>
<pathelement location="extern/zip4j.jar"/>
<pathelement location="extern/jaxb-api.jar"/>
<pathelement location="extern/jaxb-core.jar"/>
<pathelement location="extern/jaxb-impl.jar"/>
</classpath>
</javac>
<unjar src="extern/platform.jar" dest="build">
<filelist dir="." files="extern/jna.jar" />
<filelist dir="." files="extern/args4j.jar" />
<filelist dir="." files="extern/zip4j.jar" />
<filelist dir="." files="extern/jaxb-api.jar" />
<filelist dir="." files="extern/jaxb-core.jar" />
<filelist dir="." files="extern/jaxb-impl.jar" />
</unjar>
<copy file="resources/icon.png" tofile="build/icon.png" overwrite="true" />
<copy file="resources/title.png" tofile="build/title.png" overwrite="true" />
<jar destfile="bin/sheepit-client.jar"
basedir="build/">
<include name="**"/>
<manifest>
<attribute name="Main-Class" value="com.sheepit.client.standalone.Worker"/>
<attribute name="Application-Name" value="SheepIt-client"/>
<attribute name="Trusted-Library" value="true"/>
<attribute name="Permissions" value="all-permissions"/>
<attribute name="Codebase" value="*"/>
</manifest>
</jar>
</target>
<target name="clean" description="clean files">
<delete dir="build"/>
<delete dir="bin"/>
</target>
</project>