1
0
mirror of synced 2026-05-22 13:23:17 +00:00
Files
spring-security/bom/spring-security-bom.gradle
T

14 lines
236 B
Groovy
Raw Normal View History

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
}
}
}
}