-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathbuild_jar.xml
More file actions
17 lines (17 loc) · 816 Bytes
/
build_jar.xml
File metadata and controls
17 lines (17 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project BasicV2">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<!--define folder properties-->
<property name="dir.buildfile" value="."/>
<property name="dir.jarfile" value="dist"/>
<target name="create_run_jar">
<jar destfile="${dir.jarfile}/basicv2.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="com.sixtyfour.runner.VisualRuntime"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${dir.buildfile}/bin"/>
</jar>
</target>
</project>