mirror of
https://github.com/braillerap/BrailleRap.git
synced 2025-06-11 03:13:23 +02:00
project refactoring
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
<?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="I:/home/3d/braillerapsp.github/BrailleRapSP/NatBrailleTools/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="I:/home/3d/braillerapsp.github/BrailleRapSP/NatBrailleTools/BrailleLogger/bin"/>
|
||||
</jar>
|
||||
</target>
|
||||
</project>
|
BIN
NatBrailleTools/BrailleLogger/ant/jar-in-jar-loader.zip
Normal file
BIN
NatBrailleTools/BrailleLogger/ant/jar-in-jar-loader.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,21 @@
|
||||
<?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="I:/home/3d/braillerapsp.github/BrailleRapSP/NatBrailleTools/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="${dir.buildfile}"/>
|
||||
</jar>
|
||||
</target>
|
||||
</project>
|
@ -29,7 +29,7 @@ public class BrailleLogger {
|
||||
System.out.println(";" + s);
|
||||
}
|
||||
|
||||
if (args[0] != null)
|
||||
if (args.length > 0)
|
||||
{
|
||||
FileReader fr;
|
||||
Braille2GcodeEncoder encoder = new Braille2GcodeEncoder(new Braille6GcodeEncoding());
|
||||
|
Reference in New Issue
Block a user