Remove API diff Gradle plugin configuration

We have not published API diffs for a while now so we should remove the
configuration entirely from our build.
This commit is contained in:
Brian Clozel
2023-11-23 15:53:35 +01:00
parent 121e3540cc
commit 3bcd30e811
4 changed files with 3 additions and 168 deletions

View File

@@ -16,6 +16,8 @@ ext {
javaProjects = subprojects.findAll { !it.name.startsWith("framework-") }
}
description = "Spring Framework"
configure(allprojects) { project ->
apply plugin: "org.springframework.build.localdev"
group = "org.springframework"
@@ -116,8 +118,3 @@ configure([rootProject] + javaProjects) { project ->
configure(moduleProjects) { project ->
apply from: "${rootDir}/gradle/spring-module.gradle"
}
configure(rootProject) {
description = "Spring Framework"
apply plugin: 'org.springframework.build.api-diff'
}