-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuildJar.xml
19 lines (19 loc) · 1.03 KB
/
buildJar.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project android-pass">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<target name="create_run_jar">
<jar destfile="/home/mutant/workbench/YouShallPass.jar" filesetmanifest="merge">
<manifest>
<attribute name="Main-Class" value="frontend.gui.PassWindow"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="/home/mutant/workbench/android-pass/bin"/>
<fileset dir="/home/mutant/workbench/android-pass/">
<include name="res/**" />
</fileset>
<zipfileset excludes="META-INF/*.SF" src="/home/mutant/workbench/android-pass/forms-1.3.0.jar"/>
<zipfileset excludes="META-INF/*.SF" src="/home/mutant/workbench/android-pass/miglayout15-swing.jar"/>
</jar>
</target>
</project>