#50 - Added BOM for release train modules.

This commit is contained in:
Oliver Gierke
2014-02-17 09:28:42 +01:00
parent 193e752480
commit 749878f6a8
2 changed files with 80 additions and 34 deletions

45
bom/pom.xml Normal file
View File

@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-releasetrain</artifactId>
<version>Babbage-BUILD-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-build</artifactId>
<version>1.2.1.BUILD-SNAPSHOT</version>
</parent>
<name>Spring Data Release Train - BOM</name>
<description>Bill of materials to make sure a consistent set of versions is used for Spring Data modules.</description>
<url>https://github.com/SpringData/spring-data-build</url>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
<version>1.6.4.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.4.4.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.3.4.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>2.3.4.BUILD-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

69
pom.xml
View File

@@ -1,41 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd"> <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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.data.build</groupId> <groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-build</artifactId> <artifactId>spring-data-build</artifactId>
<version>1.2.1.BUILD-SNAPSHOT</version> <version>1.2.1.BUILD-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Spring Data Build</name> <name>Spring Data Build</name>
<description>Modules to centralize common resources and configuration for Spring Data Maven builds.</description> <description>Modules to centralize common resources and configuration for Spring Data Maven builds.</description>
<url>https://github.com/SpringData/spring-data-build</url> <url>https://github.com/SpringData/spring-data-build</url>
<organization> <organization>
<name>SpringSource</name> <name>Pivotal Software, Inc.</name>
<url>http://www.springsource.org</url> <url>http://www.spring.io</url>
</organization> </organization>
<modules> <modules>
<module>resources</module> <module>resources</module>
<module>parent</module> <module>parent</module>
</modules> <module>bom</module>
</modules>
<developers>
<developers>
<developer> <developer>
<id>ogierke</id> <id>ogierke</id>
<name>Oliver Gierke</name> <name>Oliver Gierke</name>
<email>ogierke at vmware.com</email> <email>ogierke at gopivotal.com</email>
<organization>SpringSource</organization> <organization>Pivotal Software, Inc.</organization>
<organizationUrl>http://www.springsource.com</organizationUrl> <organizationUrl>http://www.spring.io</organizationUrl>
<roles> <roles>
<role>Project lead</role> <role>Project lead</role>
</roles> </roles>
<timezone>+1</timezone> <timezone>+1</timezone>
</developer> </developer>
</developers> </developers>
<licenses> <licenses>
<license> <license>
<name>Apache License, Version 2.0</name> <name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url> <url>http://www.apache.org/licenses/LICENSE-2.0</url>
@@ -46,7 +47,7 @@
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
You may obtain a copy of the License at You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, distributed under the License is distributed on an "AS IS" BASIS,
@@ -59,14 +60,14 @@
</licenses> </licenses>
<scm> <scm>
<url>https://github.com/SpringSource/spring-data-build</url> <url>https://github.com/SpringSource/spring-data-build</url>
<connection>scm:git:git://github.com/SpringSource/spring-data-build.git</connection> <connection>scm:git:git://github.com/SpringSource/spring-data-build.git</connection>
<developerConnection>scm:git:ssh://git@github.com:SpringSource/spring-data-build.git</developerConnection> <developerConnection>scm:git:ssh://git@github.com:SpringSource/spring-data-build.git</developerConnection>
</scm> </scm>
<issueManagement> <issueManagement>
<system>GitHub</system> <system>GitHub</system>
<url>https://github.com/SpringSource/spring-data-build/issues</url> <url>https://github.com/SpringSource/spring-data-build/issues</url>
</issueManagement> </issueManagement>
</project> </project>