root/trunk/examples/pom.xml

Revision 545, 3.0 KB (checked in by rodche, 8 months ago)

The project version used by maven2 POMs is now 1.1.1-SNAPSHOT (the next development version after 1.1.0 is released)

  • Property svn:mime-type set to text/plain
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2  <parent>
3    <artifactId>bridgedb-bundle</artifactId>
4    <groupId>org.bridgedb</groupId>
5    <version>1.1.1-SNAPSHOT</version>
6  </parent>
7  <modelVersion>4.0.0</modelVersion>
8  <groupId>org.bridgedb</groupId>
9  <artifactId>examples</artifactId>
10  <name>Bridge DB Examples</name>
11  <version>1.1.1-SNAPSHOT</version>
12 
13        <build>
14                <directory>target</directory>
15                <outputDirectory>target/classes</outputDirectory>
16                <finalName>${artifactId}-${version}</finalName>
17                <testOutputDirectory>target/test-classes</testOutputDirectory>
18                <sourceDirectory>src</sourceDirectory>
19                <scriptSourceDirectory>scripts</scriptSourceDirectory>
20                <testSourceDirectory>test</testSourceDirectory>
21                <resources>
22                        <resource>
23                                <directory>resources</directory>
24                        </resource>
25                </resources>
26                <testResources>
27                        <testResource>
28                                <directory>test-resources</directory>
29                        </testResource>
30                </testResources>
31        </build>
32 
33  <dependencies>
34    <dependency>
35        <groupId>org.bridgedb</groupId>
36        <artifactId>org.bridgedb</artifactId>
37        <version>1.1.1-SNAPSHOT</version>
38        <scope>compile</scope>
39    </dependency>
40    <dependency>
41        <groupId>org.bridgedb</groupId>
42        <artifactId>org.bridgedb.bio</artifactId>
43        <version>1.1.1-SNAPSHOT</version>
44        <scope>compile</scope>
45    </dependency>
46    <dependency>
47        <groupId>org.bridgedb.webservice</groupId>
48        <artifactId>org.bridgedb.webservice.bridgerest</artifactId>
49        <version>1.1.1-SNAPSHOT</version>
50        <scope>compile</scope>
51    </dependency>
52    <dependency>
53        <groupId>org.bridgedb.webservice</groupId>
54        <artifactId>org.bridgedb.webservice.biomart</artifactId>
55        <version>1.1.1-SNAPSHOT</version>
56        <scope>compile</scope>
57    </dependency>
58    <dependency>
59        <groupId>commons-discovery</groupId>
60        <artifactId>commons-discovery</artifactId>
61        <version>0.4</version>
62        <type>jar</type>
63        <scope>runtime</scope>
64    </dependency>
65    <dependency>
66        <groupId>wsdl4j</groupId>
67        <artifactId>wsdl4j</artifactId>
68        <version>1.6.2</version>
69        <type>jar</type>
70        <scope>runtime</scope>
71    </dependency>
72    <dependency>
73        <groupId>org.apache.axis</groupId>
74        <artifactId>axis</artifactId>
75        <version>1.4</version>
76        <type>jar</type>
77    </dependency>
78    <dependency>
79        <groupId>org.apache.axis</groupId>
80        <artifactId>axis-jaxrpc</artifactId>
81        <version>1.4</version>
82        <type>jar</type>
83    </dependency>
84    <dependency>
85        <groupId>org.bridgedb.webservice</groupId>
86        <artifactId>org.bridgedb.webservice.picr</artifactId>
87        <version>1.1.1-SNAPSHOT</version>
88        <scope>compile</scope>
89    </dependency>
90    <dependency>
91        <groupId>org.bridgedb.webservice</groupId>
92        <artifactId>org.bridgedb.webservice.cronos</artifactId>
93        <version>1.1.1-SNAPSHOT</version>
94        <scope>compile</scope>
95    </dependency>
96  </dependencies>
97 
98</project>
Note: See TracBrowser for help on using the browser.