-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexport_jar.xml
More file actions
27 lines (27 loc) · 1.96 KB
/
Copy pathexport_jar.xml
File metadata and controls
27 lines (27 loc) · 1.96 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project ColorFX 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="/home/iutinfo/eclipse/workspaces/lineup3"/>
<property name="dir.jarfile" value="${dir.buildfile}/build"/>
<target name="create_run_jar">
<jar destfile="${dir.jarfile}/colorfx.jar">
<manifest>
<attribute name="Main-Class" value="org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader"/>
<attribute name="Rsrc-Main-Class" value="colorfix.app.ColorFX"/>
<attribute name="Class-Path" value="."/>
<attribute name="Rsrc-Class-Path" value="./ javafx-controls-13.jar javafx-controls-13-linux.jar javafx-graphics-13.jar javafx-graphics-13-linux.jar javafx-base-13.jar javafx-base-13-linux.jar"/>
</manifest>
<zipfileset src="jar-in-jar-loader.zip"/>
<fileset dir="${dir.buildfile}/target/classes"/>
<zipfileset dir="/home/iutinfo/.m2/repository/org/openjfx/javafx-controls/13" includes="javafx-controls-13.jar"/>
<zipfileset dir="/home/iutinfo/.m2/repository/org/openjfx/javafx-controls/13" includes="javafx-controls-13-linux.jar"/>
<zipfileset dir="/home/iutinfo/.m2/repository/org/openjfx/javafx-graphics/13" includes="javafx-graphics-13.jar"/>
<zipfileset dir="/home/iutinfo/.m2/repository/org/openjfx/javafx-graphics/13" includes="javafx-graphics-13-linux.jar"/>
<zipfileset dir="/home/iutinfo/.m2/repository/org/openjfx/javafx-base/13" includes="javafx-base-13.jar"/>
<zipfileset dir="/home/iutinfo/.m2/repository/org/openjfx/javafx-base/13" includes="javafx-base-13-linux.jar"/>
</jar>
</target>
</project>