19 lines
552 B
Groovy
19 lines
552 B
Groovy
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url "https://repo.spring.io/libs-snapshot" }
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == "io.spring.javaformat") {
|
|
useModule "io.spring.javaformat:spring-javaformat-gradle-plugin:${requested.version}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
include ':servlet:spring-boot:java:hello'
|
|
include ':servlet:spring-boot:java:hello-security'
|
|
include ':servlet:spring-boot:java:hello-security-explicit'
|