-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab.xml
More file actions
15 lines (15 loc) · 787 Bytes
/
lab.xml
File metadata and controls
15 lines (15 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project COMP3021">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<target name="create_run_jar">
<jar destfile="C:/Users/mwenaa/Documents/lab.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="demo.Demo"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="D:/HKUST/TA/COMP3021/COMP3021/bin"/>
<zipfileset excludes="META-INF/*.SF" src="D:/HKUST/TA/COMP3021/COMP3021/lib/guava-18.0.jar"/>
</jar>
</target>
</project>