-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
59 lines (58 loc) · 4.65 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project GOWTreasureHuntAutoPlayer with Jar-in-Jar Loader">
<!--this file was created by Eclipse Runnable JAR file Export Wizard-->
<!--ANT 1.7 is required-->
<!--define folder properties-->
<property name="dir.buildfile" value="."/>
<property name="dir.workspace" value="${dir.buildfile}/.."/>
<property name="dir.jarfile" value="./target"/>
<target name="buildinfo">
<tstamp>
<format property="builtat" pattern="MM/dd/yyyy hh:mm aa" timezone="America/New_York"/>
</tstamp>
<exec executable="whoami" outputproperty="whoami"/>
<propertyfile file="${dir.buildfile}/src/project.properties"
comment="This file is automatically generated - DO NOT EDIT">
<entry key="buildtime" value="${builtat}"/>
<entry key="builder" value="${whoami}"/>
<entry key="version" value="${version}"/>
</propertyfile>
</target>
<target name="create_run_jar" depends="buildinfo">
<jar destfile="${dir.jarfile}/gow.jar">
<manifest>
<attribute name="Main-Class" value="org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader"/>
<attribute name="Rsrc-Main-Class" value="com.dmajewski.gow.windows.app.SplashWindow"/>
<attribute name="Class-Path" value="."/>
<attribute name="Rsrc-Class-Path" value="./ commons-io-2.5.jar commons-lang3-3.5.jar jna-4.4.0.jar jna-platform-4.4.0.jar logback-classic-1.2.3.jar logback-core-1.2.3.jar slf4j-api-1.7.25.jar ip-0.26.jar georegression-0.12.jar ddogleg-0.10.jar core-0.30.jar dense64-0.30.jar simple-0.30.jar equation-0.30.jar io-0.26.jar calibration-0.26.jar geo-0.26.jar xstream-1.4.7.jar xmlpull-1.1.3.1.jar xpp3_min-1.1.4c.jar snakeyaml-1.17.jar feature-0.26.jar"/>
</manifest>
<zipfileset src="jar-in-jar-loader.zip"/>
<fileset dir="${dir.buildfile}/target/classes"/>
<fileset dir="${dir.buildfile}/src">
<include name="project.properties"/>
</fileset>
<zipfileset dir="${user.home}/.m2/repository/commons-io/commons-io/2.5" includes="commons-io-2.5.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/apache/commons/commons-lang3/3.5" includes="commons-lang3-3.5.jar"/>
<zipfileset dir="${user.home}/.m2/repository/net/java/dev/jna/jna/4.4.0" includes="jna-4.4.0.jar"/>
<zipfileset dir="${user.home}/.m2/repository/net/java/dev/jna/jna-platform/4.4.0" includes="jna-platform-4.4.0.jar"/>
<zipfileset dir="${user.home}/.m2/repository/ch/qos/logback/logback-classic/1.2.3" includes="logback-classic-1.2.3.jar"/>
<zipfileset dir="${user.home}/.m2/repository/ch/qos/logback/logback-core/1.2.3" includes="logback-core-1.2.3.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/slf4j/slf4j-api/1.7.25" includes="slf4j-api-1.7.25.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/boofcv/ip/0.26" includes="ip-0.26.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/georegression/georegression/0.12" includes="georegression-0.12.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/ddogleg/ddogleg/0.10" includes="ddogleg-0.10.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/ejml/core/0.30" includes="core-0.30.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/ejml/dense64/0.30" includes="dense64-0.30.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/ejml/simple/0.30" includes="simple-0.30.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/ejml/equation/0.30" includes="equation-0.30.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/boofcv/io/0.26" includes="io-0.26.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/boofcv/calibration/0.26" includes="calibration-0.26.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/boofcv/geo/0.26" includes="geo-0.26.jar"/>
<zipfileset dir="${user.home}/.m2/repository/com/thoughtworks/xstream/xstream/1.4.7" includes="xstream-1.4.7.jar"/>
<zipfileset dir="${user.home}/.m2/repository/xmlpull/xmlpull/1.1.3.1" includes="xmlpull-1.1.3.1.jar"/>
<zipfileset dir="${user.home}/.m2/repository/xpp3/xpp3_min/1.1.4c" includes="xpp3_min-1.1.4c.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/yaml/snakeyaml/1.17" includes="snakeyaml-1.17.jar"/>
<zipfileset dir="${user.home}/.m2/repository/org/boofcv/feature/0.26" includes="feature-0.26.jar"/>
</jar>
</target>
</project>