2021-05-17 17:49:04 -05:00
|
|
|
import io.spring.gradle.convention.SpringModulePlugin
|
2017-03-28 15:45:30 -05:00
|
|
|
|
2021-05-17 17:49:04 -05:00
|
|
|
apply plugin: 'io.spring.convention.bom'
|
2017-03-28 15:45:30 -05:00
|
|
|
|
2021-05-17 17:49:04 -05:00
|
|
|
dependencies {
|
|
|
|
|
constraints {
|
2021-05-17 22:29:45 -05:00
|
|
|
project.rootProject.allprojects { p ->
|
2021-05-17 17:49:04 -05:00
|
|
|
p.plugins.withType(SpringModulePlugin) {
|
|
|
|
|
api p
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|