mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-19 04:45:01 +00:00
14 lines
236 B
Groovy
14 lines
236 B
Groovy
import io.spring.gradle.convention.SpringModulePlugin
|
|
|
|
apply plugin: 'io.spring.convention.bom'
|
|
|
|
dependencies {
|
|
constraints {
|
|
project.rootProject.allprojects { p ->
|
|
p.plugins.withType(SpringModulePlugin) {
|
|
api p
|
|
}
|
|
}
|
|
}
|
|
}
|