-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.xml
38 lines (32 loc) · 1.02 KB
/
build.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
<?xml version="1.0"?>
<project name="org.pathvisio.core" default="jar" basedir=".">
<import file="../../build-common.xml" />
<target name="prepare">
<echo file="src/org/pathvisio/core/Revision.java">
package org.pathvisio.core;
// Do not modify, this file is automatically generated
class Revision
{
static final String VERSION = "${pathvisio.version}";
}
</echo>
</target>
<path id="project.class.path">
<fileset dir="../../lib">
<include name="org.apache.batik.*.jar"/>
<include name="org.apache.xml*.jar"/>
<include name="org.apache.xalan*.jar"/>
<include name="org.apache.xerces*.jar"/>
<include name="org.w3c.*.jar"/>
<include name="javax.xml*.jar"/>
<include name="org.pathvisio.pdftranscoder.jar"/>
<include name="com.springsource.org.jdom-1.1.0.jar"/>
<include name="org.bridgedb.jar"/>
<include name="org.bridgedb.bio.jar"/>
<include name="org.bridgedb.rdb.jar"/>
</fileset>
</path>
<path id="test.class.path">
<pathelement path="../../lib-build/junit-4.12.jar"/>
</path>
</project>