forked from draeger-lab/ModelPolisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BuildSBMLFix.xml
40 lines (40 loc) · 1.65 KB
/
BuildSBMLFix.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for Project ModelPolisher">
<!--this file was created by Eclipse Runnable JAR Export Wizard -->
<!--ANT 1.7 is required -->
<target name="create_run_jar">
<jar
compress="true"
filesetmanifest="mergewithoutmain"
index="true"
indexMetaInf="true"
jarfile="target/ModelFix.jar"
level="9"
manifestencoding="utf-8"
strict="warn"
update="true"
>
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<section name="ModelFix">
<attribute name="Specification-Title" value="ModelFix"/>
<attribute name="Specification-Version" value="1.0"/>
<attribute name="Implementation-Vendor" value="University of California, San Diego"/>
</section>
<attribute name="Main-Class" value="edu.ucsd.sbrg.util.SBMLFix"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="target/classes">
<include name="edu/ucsd/sbrg/bigg/ModelPolisher.class"/>
<include name="edu/ucsd/sbrg/bigg/SBMLPolisher.class"/>
<include name="edu/ucsd/sbrg/util/SBMLFix.class"/>
</fileset>
<zipfileset excludes="META-INF/*.SF, META-INF/INDEX.LIST, META-INF/licenses/**, tidy.gif" src="lib/JSBML-2472-incl-libs.jar"/>
<zipfileset excludes="META-INF/*.SF, META-INF/INDEX.LIST, META-INF/licenses/**" src="lib/sysbio-1388.jar">
<exclude name="de/zbit/gui/**"/>
<exclude name="de/zbit/kegg/**"/>
<exclude name="org/argparser/**"/>
</zipfileset>
</jar>
</target>
</project>