root/trunk/org.bridgedb.rdb/build.xml

Revision 521, 0.9 KB (checked in by martijn, 11 months ago)

Use bnd to generate OSGi headers. Merge common build file bits in build-common.xml

Line 
1<?xml version="1.0"?>
2<project name="org.bridgedb.rdb" default="dist" basedir=".">
3       
4        <property name="jar.name" value="../dist/org.bridgedb.rdb.jar"/>
5 
6        <!-- absolute deps are used for building, testing and in the manifest classpath -->
7        <path id="absolute.deps">
8                <fileset dir="../dist">
9                        <include name="org.bridgedb.jar"/>
10                        <include name="org.bridgedb.bio.jar"/>
11                </fileset>
12        </path>
13
14        <!-- transient deps are optional, they are used only in the manifest classpath -->
15        <path id="transient.deps">
16                <pathelement location="lib/derby.jar"/>
17        </path>
18
19        <!-- test deps are only used for testing -->
20        <path id="test.deps">
21                <pathelement location="../org.bridgedb/build-lib/junit4.jar"/>
22                <pathelement location="../org.bridgedb/build-lib/hamcrest-core.jar"/>
23                <pathelement location="../org.bridgedb/build-lib/measure.jar"/>
24                <pathelement location="build-lib/derbyclient.jar"/>
25        </path>
26
27        <import file="../build-common.xml" />
28
29</project>
Note: See TracBrowser for help on using the browser.