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

Revision 545, 1.3 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.bridgerest</artifactId>
5  <name>BridgeDb Webservice Bridgerest</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        <dependencies>
33                <dependency>
34                        <groupId>org.bridgedb</groupId>
35                        <artifactId>org.bridgedb</artifactId>
36                        <version>${project.version}</version>
37                        <scope>compile</scope>
38                </dependency>
39        </dependencies>
40</project>
Note: See TracBrowser for help on using the browser.