root/trunk/org.bridgedb.webservice.biomart/build.xml

Revision 521, 1.0 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.webservice.biomart" default="dist" basedir=".">
3       
4        <property name="jar.name" value="../dist/org.bridgedb.webservice.biomart.jar"/>
5
6        <path id="absolute.deps">
7                <pathelement location="../dist/org.bridgedb.jar"/>
8                <pathelement location="../dist/org.bridgedb.bio.jar"/>
9                <!--TODO make sure corelib build is called first -->
10        </path>
11
12        <!-- transient deps are optional, they are used only in the manifest classpath -->
13        <path id="transient.deps">
14        </path>
15
16        <!-- test deps are only used for testing -->
17        <path id="test.deps">
18                <pathelement location="../org.bridgedb/build-lib/junit4.jar"/>
19                <pathelement location="../org.bridgedb/build-lib/hamcrest-core.jar"/>
20        </path>
21
22        <target name="prepare">
23                <mkdir dir="build/org/bridgedb/webservice/biomart/util"/>
24                <copy file="src/org/bridgedb/webservice/biomart/util/filterconversion.txt"
25                        todir="build/org/bridgedb/webservice/biomart/util" />
26        </target>
27
28        <import file="../build-common.xml" />
29
30</project>
Note: See TracBrowser for help on using the browser.