-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (24 loc) · 1.08 KB
/
build.xml
File metadata and controls
25 lines (24 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project CompactPDFExport">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<target name="create_run_jar">
<jar destfile="CompactPDFExport.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Class-Path" value="."/>
<!-- <attribute name="Main-Class" value="de.hrogge.CompactPDFExport.MainStart"/> -->
<attribute name="HeldenPluginClass" value="de.hrogge.CompactPDFExport.PluginStart.class"/>
</manifest>
<include name=""/>
<fileset dir="./bin/"/>
<zipgroupfileset dir="./lib" includes="*.jar"/>
</jar>
</target>
<target name="create_source_archive">
<zip destfile="CompactPDFExport.zip">
<zipfileset dir="src/" prefix="src/"/>
<zipfileset dir="." includes="build.xml,LICENSE.txt"/>
<zipfileset dir="lib/" prefix="lib/"/>
</zip>
</target>
</project>