-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
20 lines (20 loc) · 940 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project Fractal Explorer">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<target name="create_run_jar">
<jar destfile="FractalExplorer.jar" filesetmanifest="mergewithoutmain" duplicate="preserve">
<manifest>
<attribute name="Main-Class" value="Launcher"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="bin"/>
<fileset dir="src"/>
<fileset dir="lib"/>
<fileset dir="." includes="javadoc/*" />
<fileset dir="." includes="fractal.png" />
<fileset dir="." includes="fractal.html" />
<fileset dir="." includes="*.md" />
</jar>
</target>
</project>