Review, refactor and polish (local) Spring Build Conventions Gradle Plugins.

Remove the gradle/maven-pom-editor.gradle build script as this logic (concern) is handled by the MavenPlushingConventionsPlugin.

Clean up associated Gradle project build scripts affected by the Gradle Plugin changes.
This commit is contained in:
John Blum
2022-01-27 13:57:14 -08:00
parent 7ecf5551f0
commit bcf2a138e4
31 changed files with 606 additions and 370 deletions

View File

@@ -28,8 +28,6 @@ allprojects {
repositories {
mavenCentral()
if (version.contains('-')) {
maven { url "https://repo.spring.io/milestone" }
}
@@ -37,10 +35,6 @@ allprojects {
maven { url "https://repo.spring.io/snapshot" }
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, "minutes"
}
}
nohttp {
@@ -57,5 +51,3 @@ description = 'Spring Boot for Apache Geode'
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"