-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.xml
More file actions
42 lines (27 loc) · 1.46 KB
/
Build.xml
File metadata and controls
42 lines (27 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project ThoFu Interpreter">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<property name="src" value="src"/>
<target name="create_run_jar" >
<delete file="ThoFu Interpreter.jar" />
<javac destdir="bin">
<src path="${src}"/>
<classpath refid="java"/>
</javac>
<jar destfile="ThoFu Interpreter.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="de.tuhrig.thofu.gui.ThoFuUi"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="bin"/>
<zipfileset excludes="META-INF/*.SF" src="libs/log4j-1.2.16.jar"/>
<zipfileset excludes="META-INF/*.SF" src="libs/rsyntaxtextarea.jar"/>
<zipfileset excludes="META-INF/*.SF" src="libs/autocomplete-1.4.1.jar"/>
<zipfileset excludes="META-INF/*.SF" src="libs/swingx-all-1.6.3.jar"/>
<zipfileset excludes="META-INF/*.SF" src="libs/commons-lang3-3.1.jar"/>
<zipfileset excludes="META-INF/*.SF" src="libs/markdownj-1.0.2b4-0.3.0.jar"/>
<zipfileset excludes="META-INF/*.SF" src="libs/javassist.jar"/>
</jar>
</target>
</project>