Configure the Gradle Enterprise server Gradle Plugin.

Configure the Springe Gradle Enterprise server conventions Gradle Plugin.

Configure Gradle Plugin Management.
This commit is contained in:
John Blum
2022-06-21 19:59:01 -07:00
parent 03fac607b0
commit 97c447f4f5

View File

@@ -1,3 +1,21 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven {
url 'https://repo.spring.io/release'
}
if (version.endsWith('-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
}
}
plugins {
id "com.gradle.enterprise" version "3.10.2"
id "io.spring.ge.conventions" version "0.0.10"
}
rootProject.name = 'spring-session-data-geode-build'
FileTree buildFiles = fileTree(rootDir) {