Files
spring-test-data-geode/build.gradle
John Blum 2e1153053b Remove Spring 'libs-snapshot' Repository declaration from dependency-management.gradle and change the Spring Plugins Repository buildscript repository declaration to 'plugins-snapshot' in build.gradle.
The Spring Boot Gradle Plugin is used to manage transitive dependencies, comes from the Spring 'plugins-snapshot' Repository.

This should enable '*-RELEASE' builds to work correctly even when Spring Boot is in milestone versions (M# and RC#).
2020-05-13 17:22:22 -07:00

36 lines
1.1 KiB
Groovy

buildscript {
dependencies {
classpath 'io.spring.gradle:spring-build-conventions:0.0.31.RELEASE'
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
}
repositories {
gradlePluginPortal()
maven { url 'https://repo.spring.io/plugins-snapshot' }
}
}
apply plugin: 'io.spring.convention.root'
group = 'org.springframework.data'
description = 'Spring Test Framework for Apache Geode and Pivotal GemFire using Spring Data.'
ext['spring.version'] = "$springVersion"
ext['spring-framework.version'] = "$springVersion"
ext['spring-data-releasetrain.version'] = "$springDataReleaseTrainVersion"
ext.releaseBuild = version.endsWith('RELEASE')
ext.snapshotBuild = version.endsWith('SNAPSHOT')
ext.milestoneBuild = !(releaseBuild || snapshotBuild)
ext.MAVEN_POM_EDITOR_GRADLE = "$rootDir/gradle/maven-pom-editor.gradle"
project.checkstyle.sourceSets.forEach { it -> it.excludes '**/target', '**/out', '**/build' }
//project.tasks.findByName('checkstyleNohttp').configure {
// exclude '**/target/**/*', '**/out/**/*', '**/build/**/*'
//}
tasks.withType(Checkstyle) {
exclude '**/target/**/*', '**/out/**/*', '**/build/**/*'
}