Spring-Security-Samples/settings.gradle

26 lines
873 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 ":reactive:rsocket:hello-security"
include ":reactive:webflux:hello"
include ":reactive:webflux:hello-security-explicit"
include ":reactive:webflux:method"
include ":reactive:webflux:hello-security"
include ":reactive:webflux:authentication:username-password:form"
include ":reactive:webflux:authentication:x509"
include ":servlet:spring-boot:java:hello"
include ":servlet:spring-boot:java:hello-security-explicit"
include ":servlet:spring-boot:java:hello-security"