Skip to content

Commit 3461b26

Browse files
committed
Exclude the Spring Gradle docbook-reference-plugin from the Spring Build Conventions Gradle Plugins during reference documentation generation.
1 parent 1abf388 commit 3461b26

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ import io.spring.gradle.convention.Utils
22

33
buildscript {
44
dependencies {
5-
classpath 'io.spring.gradle:spring-build-conventions:0.0.38'
5+
classpath('io.spring.gradle:spring-build-conventions:0.0.38') {
6+
exclude group: "io.spring.gradle", module: "docbook-reference-plugin"
7+
}
68
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
79
}
810
repositories {
@@ -45,12 +47,12 @@ allprojects {
4547

4648
description = 'Spring Test Framework for Apache Geode'
4749

48-
// Define dependency version overrides
50+
// Define project dependency version overrides
4951
//ext['spring.version'] = "$springVersion"
5052
ext['spring-framework.version'] = "$springVersion"
5153
ext['spring-data-bom.version'] = "$springDataBomVersion"
5254

53-
// Define Gradle build in terms of snapshot, milestone or release build.
55+
// Define Gradle build release type (e.g. snapshot, milestone, release candidate or GA release)
5456
ext.milestoneBuild = Utils.isMilestone(project)
5557
ext.releaseBuild = Utils.isRelease(project)
5658
ext.snapshotBuild = Utils.isSnapshot(project)

0 commit comments

Comments
 (0)