-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
19 lines (19 loc) · 1.04 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project rock_analysis_interface">
<property name="dir.buildfile" value="."/>
<property name="dir.workspace" value="${dir.buildfile}/.."/>
<property name="dir.jarfile" value="${dir.buildfile}/out"/>
<target name="create_run_jar">
<!-- <jvmarg value="-Xdock:icon=app/icon.png"/> -->
<jar destfile="${dir.jarfile}/HALite.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="system_main.HALite"/>
<attribute name="Class-Path" value="."/>
<attribute name="SplashScreen-Image" value="app/splash_screen.png"/>
</manifest>
<fileset dir="${dir.buildfile}/bin"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.buildfile}/lib/commons-math3-3.6.1.jar"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.buildfile}/lib/pdfbox-app-2.0.12.jar"/>
</jar>
</target>
</project>