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