#79 - Add Gradle configuration to the BOM example.

This commit is contained in:
Andy Wilkinson
2015-04-16 17:24:07 +01:00
committed by Oliver Gierke
parent 2c9f75c7e0
commit e1e22f4e5e
3 changed files with 65 additions and 19 deletions

View File

@@ -5,17 +5,17 @@
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-examples-bom</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<name>Spring Data - Using the BOM for dependency management</name>
<properties>
<spring.version>4.1.6.RELEASE</spring.version>
<spring-data.version>Fowler-RELEASE</spring-data.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
@@ -23,7 +23,7 @@
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-releasetrain</artifactId>
@@ -31,23 +31,23 @@
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
</dependency>
</dependencies>
</project>
</project>