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