2019-08-13 22:20:16 +08:00
|
|
|
plugins {
|
|
|
|
id 'java-gradle-plugin'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2019-08-19 16:15:43 +08:00
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-15 20:40:42 +08:00
|
|
|
implementation "me.champeau.gradle:japicmp-gradle-plugin:0.3.0"
|
2019-08-13 22:20:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
2019-08-19 16:15:43 +08:00
|
|
|
apiDiffPlugin {
|
|
|
|
id = "org.springframework.build.api-diff"
|
|
|
|
implementationClass = "org.springframework.build.api.ApiDiffPlugin"
|
|
|
|
}
|
2019-08-15 19:31:06 +08:00
|
|
|
compileConventionsPlugin {
|
|
|
|
id = "org.springframework.build.compile"
|
|
|
|
implementationClass = "org.springframework.build.compile.CompilerConventionsPlugin"
|
|
|
|
}
|
2019-08-13 23:51:13 +08:00
|
|
|
optionalDependenciesPlugin {
|
|
|
|
id = "org.springframework.build.optional-dependencies"
|
|
|
|
implementationClass = "org.springframework.build.optional.OptionalDependenciesPlugin"
|
|
|
|
}
|
2022-07-01 00:20:25 +08:00
|
|
|
runtimeHintsAgentPlugin {
|
|
|
|
id = "org.springframework.build.runtimehints-agent"
|
|
|
|
implementationClass = "org.springframework.build.hint.RuntimeHintsAgentPlugin"
|
|
|
|
}
|
2019-08-13 22:20:16 +08:00
|
|
|
}
|
|
|
|
}
|