2020-07-09 15:06:37 -04:00
|
|
|
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}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-09 15:15:33 -04:00
|
|
|
include ':servlet:spring-boot:java:hello'
|
2020-07-09 15:06:37 -04:00
|
|
|
include ':servlet:spring-boot:java:hello-security'
|
2020-07-09 17:42:22 -04:00
|
|
|
include ':servlet:spring-boot:java:hello-security-explicit'
|