-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmultiview_ant.xml
More file actions
20 lines (20 loc) · 1.06 KB
/
multiview_ant.xml
File metadata and controls
20 lines (20 loc) · 1.06 KB
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 MultiviewMethod">
<!--this file was created by Eclipse Runnable JAR Export Wizard-->
<!--ANT 1.7 is required -->
<!--define folder properties-->
<property name="dir.buildfile" value="."/>
<property name="dir.workspace" value="."/>
<property name="dir.jarfile" value="${dir.buildfile}"/>
<target name="create_run_jar">
<jar destfile="${dir.jarfile}/multiview.jar" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="main.CriaObjToEvalPerDataset"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${dir.jarfile}/MultiviewMethod/bin"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.jarfile}/libs/xerces-2_6_2.jar"/>
<zipfileset excludes="META-INF/*.SF" src="${dir.jarfile}/libs/commons-math-1.2.jar"/>
</jar>
</target>
</project>