|
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</groupId> |
|---|
| 4 | <artifactId>org.bridgedb.bio</artifactId> |
|---|
| 5 | <name>BridgeDb Bio</name> |
|---|
| 6 | <description>Defines Datasources</description> |
|---|
| 7 | |
|---|
| 8 | <parent> |
|---|
| 9 | <artifactId>bridgedb-bundle</artifactId> |
|---|
| 10 | <groupId>org.bridgedb</groupId> |
|---|
| 11 | <version>1.1.1-SNAPSHOT</version> |
|---|
| 12 | </parent> |
|---|
| 13 | |
|---|
| 14 | <build> |
|---|
| 15 | <directory>target</directory> |
|---|
| 16 | <outputDirectory>target/classes</outputDirectory> |
|---|
| 17 | <finalName>${artifactId}-${version}</finalName> |
|---|
| 18 | <testOutputDirectory>target/test-classes</testOutputDirectory> |
|---|
| 19 | <sourceDirectory>src</sourceDirectory> |
|---|
| 20 | <scriptSourceDirectory>scripts</scriptSourceDirectory> |
|---|
| 21 | <testSourceDirectory>test</testSourceDirectory> |
|---|
| 22 | <resources> |
|---|
| 23 | <resource> |
|---|
| 24 | <directory>resources</directory> |
|---|
| 25 | </resource> |
|---|
| 26 | </resources> |
|---|
| 27 | <testResources> |
|---|
| 28 | <testResource> |
|---|
| 29 | <directory>test-resources</directory> |
|---|
| 30 | </testResource> |
|---|
| 31 | </testResources> |
|---|
| 32 | </build> |
|---|
| 33 | |
|---|
| 34 | <dependencies> |
|---|
| 35 | <dependency> |
|---|
| 36 | <groupId>org.bridgedb</groupId> |
|---|
| 37 | <artifactId>org.bridgedb</artifactId> |
|---|
| 38 | <version>${project.version}</version> |
|---|
| 39 | <scope>compile</scope> |
|---|
| 40 | </dependency> |
|---|
| 41 | </dependencies> |
|---|
| 42 | |
|---|
| 43 | </project> |
|---|