forked from spring-projects/spring-security-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
67 lines (65 loc) · 3.16 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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-fn:hello"
include ":reactive:webflux-fn:hello-security"
include ":reactive:webflux:java:authentication:username-password:form"
include ":reactive:webflux:java:authentication:x509"
include ":reactive:webflux:java:hello"
include ":reactive:webflux:java:hello-security"
include ":reactive:webflux:java:hello-security-explicit"
include ":reactive:webflux:java:method"
include ":reactive:webflux:java:oauth2:login"
include ":reactive:webflux:java:oauth2:resource-server"
include ":reactive:webflux:java:oauth2:webclient"
include ":reactive:webflux:kotlin:hello-security"
include ":servlet:java-configuration:aspectj"
include ":servlet:java-configuration:authentication:preauth"
include ":servlet:java-configuration:authentication:remember-me"
include ":servlet:java-configuration:authentication:username-password:form"
include ":servlet:java-configuration:authentication:username-password:in-memory"
include ":servlet:java-configuration:authentication:username-password:jdbc"
include ":servlet:java-configuration:authentication:username-password:ldap"
include ":servlet:java-configuration:authentication:x509"
include ":servlet:java-configuration:data"
include ":servlet:java-configuration:hello-mvc-security"
include ":servlet:java-configuration:hello-security"
include ":servlet:java-configuration:hello-security-explicit"
include ":servlet:java-configuration:max-sessions"
include ":servlet:java-configuration:saml2:login"
include ":servlet:spring-boot:java:authentication:username-password:user-details-service:custom-user"
include ":servlet:spring-boot:java:authentication:username-password:mfa"
include ":servlet:spring-boot:java:hello"
include ":servlet:spring-boot:java:hello-security"
include ":servlet:spring-boot:java:hello-security-explicit"
include ":servlet:spring-boot:java:jwt:login"
include ":servlet:spring-boot:java:ldap"
include ":servlet:spring-boot:java:oauth2:authorization-server"
include ":servlet:spring-boot:java:oauth2:login"
include ":servlet:spring-boot:java:oauth2:resource-server:hello-security"
include ":servlet:spring-boot:java:oauth2:resource-server:jwe"
include ":servlet:spring-boot:java:oauth2:resource-server:multi-tenancy"
include ":servlet:spring-boot:java:oauth2:resource-server:opaque"
include ":servlet:spring-boot:java:oauth2:resource-server:static"
include ":servlet:spring-boot:java:oauth2:webclient"
include ":servlet:spring-boot:java:saml2:login"
include ":servlet:spring-boot:java:saml2:login-single-tenant"
include ":servlet:spring-boot:java:saml2:refreshable-metadata"
include ":servlet:spring-boot:kotlin:hello-security"
include ":servlet:xml:java:helloworld"
include ":servlet:xml:java:preauth"
include ":servlet:xml:java:contacts"
include ":servlet:xml:java:dms"
include ":servlet:xml:java:saml2:login-logout"