You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
692 B
29 lines
692 B
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" |
|
} |
|
} |
|
}
|
|
|