root/trunk/org.bridgedb.webservice.synergizer/pom.xml

Revision 545, 1.6 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  <modelVersion>4.0.0</modelVersion>
3  <groupId>org.bridgedb.webservice</groupId>
4  <artifactId>org.bridgedb.webservice.synergizer</artifactId>
5  <name>BridgeDb Webservice Synergizer</name>
6 
7  <parent>
8        <artifactId>bridgedb-bundle</artifactId>
9        <groupId>org.bridgedb</groupId>
10        <version>1.1.1-SNAPSHOT</version>
11  </parent>
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>${project.version}</version>
38                </dependency>
39                <dependency>
40                        <groupId>synergizer</groupId>
41                        <artifactId>synergizer</artifactId>
42                        <version>${project.version}</version>
43                        <scope>system</scope>
44                        <systemPath>${basedir}/lib/synergizer.jar</systemPath>
45                </dependency>
46                <dependency>
47                        <groupId>org.bridgedb</groupId>
48                        <artifactId>org.bridgedb.bio</artifactId>
49                        <version>${project.version}</version>
50                </dependency>
51        </dependencies>
52</project>
Note: See TracBrowser for help on using the browser.