mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-03-25 11:31:05 +00:00
15 lines
275 B
Groovy
15 lines
275 B
Groovy
import io.spring.gradle.convention.SpringModulePlugin
|
|
|
|
apply plugin: 'io.spring.convention.bom'
|
|
apply plugin: 'compile-warnings-error'
|
|
|
|
dependencies {
|
|
constraints {
|
|
project.rootProject.allprojects { p ->
|
|
p.plugins.withType(SpringModulePlugin) {
|
|
api p
|
|
}
|
|
}
|
|
}
|
|
}
|