mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
00eef79e5c
Fixes gh-27414
30 lines
692 B
Groovy
30 lines
692 B
Groovy
plugins {
|
|
id 'java-gradle-plugin'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "me.champeau.gradle:japicmp-gradle-plugin:0.3.0"
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
apiDiffPlugin {
|
|
id = "org.springframework.build.api-diff"
|
|
implementationClass = "org.springframework.build.api.ApiDiffPlugin"
|
|
}
|
|
compileConventionsPlugin {
|
|
id = "org.springframework.build.compile"
|
|
implementationClass = "org.springframework.build.compile.CompilerConventionsPlugin"
|
|
}
|
|
optionalDependenciesPlugin {
|
|
id = "org.springframework.build.optional-dependencies"
|
|
implementationClass = "org.springframework.build.optional.OptionalDependenciesPlugin"
|
|
}
|
|
}
|
|
}
|