root/trunk/org.bridgedb/pom.xml

Revision 545, 1.2 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</groupId>
4  <artifactId>org.bridgedb</artifactId>
5  <name>BridgeDb</name>
6  <parent>
7        <artifactId>bridgedb-bundle</artifactId>
8        <groupId>org.bridgedb</groupId>
9        <version>1.1.1-SNAPSHOT</version>
10  </parent>
11
12        <build>
13                <directory>target</directory>
14                <outputDirectory>target/classes</outputDirectory>
15                <finalName>${artifactId}-${version}</finalName>
16                <testOutputDirectory>target/test-classes</testOutputDirectory>
17                <sourceDirectory>src</sourceDirectory>
18                <scriptSourceDirectory>scripts</scriptSourceDirectory>
19                <testSourceDirectory>test</testSourceDirectory>
20                <resources>
21                        <resource>
22                                <directory>resources</directory>
23                        </resource>
24                </resources>
25                <testResources>
26                        <testResource>
27                                <directory>test-data</directory>
28                        </testResource>
29                </testResources>
30        </build>
31       
32        <dependencies>
33                <dependency>
34                        <groupId>checkstyle</groupId>
35                        <artifactId>checkstyle</artifactId>
36                        <version>5.0</version>
37                        <type>jar</type>
38                        <scope>compile</scope>
39                </dependency>
40        </dependencies>
41 
42</project>
Note: See TracBrowser for help on using the browser.