Rewrite Spring Data landing page

This commit is contained in:
Greg Turnquist
2015-08-21 14:14:09 -05:00
parent f7d986c199
commit b27688e3f4
4 changed files with 157 additions and 14 deletions

18
_includes/build.gradle Normal file
View File

@@ -0,0 +1,18 @@
buildscript {
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:0.4.0.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom '{@= groupId @}:spring-data-releasetrain:{@= version @}'
}
}
dependencies {
compile '{@= groupId @}:spring-data-jpa'
compile '{@= groupId @}:spring-data-rest'
}

11
_includes/pom.xml Normal file
View File

@@ -0,0 +1,11 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>spring-data-releasetrain</artifactId>
<version>{@= version @}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>