-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
27 lines (24 loc) · 1.5 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="build_all" name="SeriousGames: Export JAR">
<property environment="env" />
<target name="build_all" depends="clean, create_runnable_jar">
</target>
<target name="clean">
<delete file="seriousSpheresKlijent.jar"/>
</target>
<target name="create_runnable_jar">
<jar destfile="C:/Documents/_Projekti/PHP/stuff/seriousSpheresKlijent.jar">
<manifest>
<attribute name="Main-Class" value="org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader"/>
<attribute name="Rsrc-Main-Class" value="hr.sandrogrzicic.igre.spheres.klijent.KlijentSpheres"/>
<attribute name="Class-Path" value="."/>
<attribute name="Rsrc-Class-Path" value="./"/>
</manifest>
<zipfileset src="jar-in-jar-loader.zip"/>
<fileset dir="bin"/>
</jar>
</target>
<target name="javadoc">
<javadoc access="private" additionalparam="-encoding UTF-8 -charset "UTF-8"" author="false" classpath="" destdir="javadoc" doctitle="Serious Spheres" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="hr.sandrogrzicic.igre.utility,hr.sandrogrzicic.igre.spheres.server,hr.sandrogrzicic.igre.spheres.klijent,hr.sandrogrzicic.igre.exceptions,hr.sandrogrzicic.igre.spheres" source="1.6" sourcepath="src" splitindex="true" use="true" version="true"/>
</target>
</project>