File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11import io.spring.gradle.convention.Utils
22
33buildscript {
4- ext {
5- snapshotBuild = Utils . isSnapshot(project)
6- milestoneBuild = Utils . isMilestone(project)
7- releaseBuild = Utils . isRelease(project)
8- }
94 dependencies {
105 classpath(' io.spring.gradle:spring-build-conventions:0.0.38' ) {
116 exclude group : " io.spring.gradle" , module : " docbook-reference-plugin"
@@ -58,6 +53,11 @@ description = 'Spring Test Framework for Apache Geode'
5853ext[' spring-framework.version' ] = " $springVersion "
5954ext[' spring-data-bom.version' ] = " $springDataBomVersion "
6055
56+ // Define Gradle build release type (e.g. snapshot, milestone, release candidate or GA release)
57+ ext. milestoneBuild = Utils . isMilestone(project)
58+ ext. releaseBuild = Utils . isRelease(project)
59+ ext. snapshotBuild = Utils . isSnapshot(project)
60+
6161// Define Gradle buildscript plugin to modify the generated Maven POM.
6262ext. MAVEN_POM_EDITOR_GRADLE = " $rootDir /gradle/maven-pom-editor.gradle"
6363
You can’t perform that action at this time.
0 commit comments