forked from Greg4cr/lustre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlustre.xml
23 lines (23 loc) · 1.34 KB
/
lustre.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project lustre">
<!--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.workspace" value="/home/meng/workspace"/>
<property name="dir.jarfile" value="${dir.buildfile}"/>
<target name="create_run_jar">
<jar destfile="${dir.jarfile}/lustre.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="main.LustreMain"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${dir.jarfile}/bin"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.jarfile}/lib/antlr-runtime-4.4.jar"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.jarfile}/lib/commons-cli-1.2.jar"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.jarfile}/lib/jkind-api.jar"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.jarfile}/lib/jkind.jar"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.jarfile}/lib/org.eclipse.equinox.common_3.6.200.v20130402-1505.jar"/>
</jar>
</target>
</project>