39 lines
1.0 KiB
Groovy
39 lines
1.0 KiB
Groovy
buildscript {
|
|
dependencies {
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.15.RELEASE'
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
|
|
}
|
|
repositories {
|
|
maven { url 'https://repo.spring.io/plugins-release' }
|
|
}
|
|
}
|
|
|
|
ext.IDE_GRADLE = "$rootDir/gradle/ide.gradle"
|
|
|
|
apply plugin: 'io.spring.convention.root'
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
apply from: IDE_GRADLE
|
|
|
|
group = 'org.springframework.data'
|
|
description = 'Spring Test Framework for Apache Geode and Pivotal GemFire using Spring Data'
|
|
|
|
ext.releaseBuild = version.endsWith('RELEASE')
|
|
ext.snapshotBuild = version.endsWith('SNAPSHOT')
|
|
ext.milestoneBuild = !(releaseBuild || snapshotBuild)
|
|
|
|
ext['apache-geode.version'] = '1.4.0'
|
|
|
|
repositories {
|
|
maven { url = "https://repo.spring.io/libs-snapshot" }
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compile "org.springframework.data:spring-data-geode"
|
|
|
|
compile("org.springframework.boot:spring-boot-starter-test") {
|
|
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging";
|
|
}
|
|
|
|
}
|