BrailleRap/NatBrailleTools/gcodestreamer/ant/gcodestreamer_ant_build.xml
2018-12-04 21:25:24 +01:00

23 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project gcodestreamer 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="D:/Users/Stephane/eclipse-workspace"/>
<property name="dir.jarfile" value="../../bin"/>
<target name="create_run_jar">
<jar destfile="${dir.jarfile}/gcodestreamer.jar">
<manifest>
<attribute name="Main-Class" value="org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader"/>
<attribute name="Rsrc-Main-Class" value="com.willwinder.sjgs.simplejavagrblstreamer.SimpleJavaGrblStreamer"/>
<attribute name="Class-Path" value="."/>
<attribute name="Rsrc-Class-Path" value="./ jssc.jar"/>
</manifest>
<zipfileset src="jar-in-jar-loader.zip"/>
<fileset dir="../bin"/>
<zipfileset dir="../../lib/jSSC-2.8.0-Release" includes="jssc.jar"/>
</jar>
</target>
</project>