Switch to local Spring Build Conventions Gradle Plugins.

This commit is contained in:
John Blum
2023-06-02 14:56:24 -07:00
parent e5418a2410
commit 39f5594f11

View File

@@ -1,6 +1,11 @@
import io.spring.gradle.convention.Utils
buildscript {
ext {
snapshotBuild = Utils.isSnapshot(project)
milestoneBuild = Utils.isMilestone(project)
releaseBuild = Utils.isRelease(project)
}
repositories {
mavenCentral()
gradlePluginPortal()
@@ -16,9 +21,6 @@ buildscript {
}
}
dependencies {
classpath('io.spring.gradle:spring-build-conventions:0.0.38') {
exclude group: "io.spring.gradle", module: "docbook-reference-plugin"
}
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
}
}
@@ -57,8 +59,4 @@ description = 'Spring Boot for Apache Geode'
//ext['spring-data-bom.version'] = "$springDataBomVersion"
//ext['spring-session-bom.version'] = "$springSessionBomVersion"
ext.snapshotBuild = Utils.isSnapshot(project)
ext.milestoneBuild = Utils.isMilestone(project)
ext.releaseBuild = Utils.isRelease(project)
ext.MAVEN_POM_EDITOR_GRADLE = "$rootDir/gradle/maven-pom-editor.gradle"