3c0fd6d7ca
Closes gh-18417 Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
15 lines
275 B
Groovy
15 lines
275 B
Groovy
import io.spring.gradle.convention.SpringModulePlugin
|
|
|
|
apply plugin: 'io.spring.convention.bom'
|
|
apply plugin: 'compile-warnings-error'
|
|
|
|
dependencies {
|
|
constraints {
|
|
project.rootProject.allprojects { p ->
|
|
p.plugins.withType(SpringModulePlugin) {
|
|
api p
|
|
}
|
|
}
|
|
}
|
|
}
|