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

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

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

  • Property svn:eol-style set to native
Line 
1<?xml version="1.0"?>
2<project name="org.bridgedb.rdb.construct" default="dist" basedir=".">
3       
4        <property name="jar.name" value="../dist/org.bridgedb.rdb.construct.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                        <include name="org.bridgedb.rdb.jar"/>
12                </fileset>
13        </path>
14
15        <!-- transient deps are optional, they are used only in the manifest classpath -->
16        <path id="transient.deps">
17                <pathelement location="lib/derby.jar"/>
18        </path>
19
20        <!-- test deps are only used for testing -->
21        <path id="test.deps">
22                <!-- nothing yet... -->
23        </path>
24
25        <import file="../build-common.xml" />
26
27</project>
Note: See TracBrowser for help on using the browser.