mirror of
https://github.com/braillerap/BrailleRap.git
synced 2025-06-09 18:39:58 +02:00
22 lines
1.0 KiB
XML
22 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<project default="create_run_jar" name="Create Runnable Jar for Project BrailleLogger 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}/BrailleLogger.jar">
|
|
<manifest>
|
|
<attribute name="Main-Class" value="org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader"/>
|
|
<attribute name="Rsrc-Main-Class" value="BrailleLogger"/>
|
|
<attribute name="Class-Path" value="."/>
|
|
<attribute name="Rsrc-Class-Path" value="./"/>
|
|
</manifest>
|
|
<zipfileset src="jar-in-jar-loader.zip"/>
|
|
<fileset dir="../bin"/>
|
|
</jar>
|
|
</target>
|
|
</project>
|