Files
Spring-Security-Samples/settings.gradle
T

74 lines
3.3 KiB
Groovy
Raw Normal View History

2020-07-09 14:06:37 -05:00
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
2022-03-17 14:44:26 -03:00
maven { url 'https://repo.spring.io/milestone' }
2020-07-09 14:06:37 -05:00
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}"
}
}
}
}
2022-09-12 15:12:19 -03:00
plugins {
id "com.gradle.enterprise" version "3.10.2"
id "io.spring.ge.conventions" version "0.0.7"
}
2020-07-29 17:27:07 -05:00
include ":reactive:rsocket:hello-security"
2020-07-28 09:38:53 -05:00
include ":reactive:webflux-fn:hello"
2020-07-28 09:51:48 -05:00
include ":reactive:webflux-fn:hello-security"
2020-07-29 17:27:07 -05:00
include ":reactive:webflux:java:authentication:username-password:form"
include ":reactive:webflux:java:authentication:x509"
2020-07-29 14:51:50 -05:00
include ":reactive:webflux:java:hello"
2020-07-29 17:27:07 -05:00
include ":reactive:webflux:java:hello-security"
2020-07-29 14:51:50 -05:00
include ":reactive:webflux:java:hello-security-explicit"
2020-07-29 17:27:07 -05:00
include ":reactive:webflux:java:method"
2020-07-29 14:51:50 -05:00
include ":reactive:webflux:java:oauth2:login"
include ":reactive:webflux:java:oauth2:resource-server"
include ":reactive:webflux:java:oauth2:webclient"
2020-07-29 17:27:07 -05:00
include ":reactive:webflux:kotlin:hello-security"
2020-10-27 15:53:58 -05:00
include ":servlet:java-configuration:aspectj"
2020-11-24 13:42:44 -06:00
include ":servlet:java-configuration:authentication:preauth"
include ":servlet:java-configuration:authentication:remember-me"
include ":servlet:java-configuration:authentication:username-password:form"
2020-10-29 11:45:47 -05:00
include ":servlet:java-configuration:authentication:username-password:in-memory"
2020-10-29 16:02:41 -05:00
include ":servlet:java-configuration:authentication:username-password:jdbc"
2020-10-30 14:59:12 -05:00
include ":servlet:java-configuration:authentication:username-password:ldap"
2020-11-25 13:53:51 -06:00
include ":servlet:java-configuration:authentication:x509"
2020-09-10 14:56:33 -05:00
include ":servlet:java-configuration:data"
2020-10-28 10:22:20 -05:00
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"
2022-03-17 09:19:45 -03:00
include ":servlet:java-configuration:saml2:login"
2020-12-08 16:16:56 -06:00
include ":servlet:spring-boot:java:authentication:username-password:user-details-service:custom-user"
2021-01-28 17:32:30 -07:00
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"
2020-10-29 15:35:29 -06:00
include ":servlet:spring-boot:java:jwt:login"
2021-06-15 16:56:59 -06:00
include ":servlet:spring-boot:java:ldap"
2021-07-23 14:59:33 -05:00
include ":servlet:spring-boot:java:oauth2:authorization-server"
2020-07-30 16:52:23 -05:00
include ":servlet:spring-boot:java:oauth2:login"
2020-08-25 10:00:15 -05:00
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"
2022-03-17 09:19:45 -03:00
include ":servlet:spring-boot:java:saml2:login"
include ":servlet:spring-boot:java:saml2:login-single-tenant"
include ":servlet:spring-boot:java:saml2:refreshable-metadata"
2021-01-28 17:32:30 -07:00
include ":servlet:spring-boot:kotlin:hello-security"
include ":servlet:xml:java:helloworld"
2021-07-23 14:15:37 -03:00
include ":servlet:xml:java:preauth"
2022-08-15 14:02:07 -05:00
include ":servlet:xml:java:contacts"
include ":servlet:xml:java:dms"
2022-01-06 11:41:54 -03:00
include ":servlet:xml:java:saml2:login-logout"
2021-10-28 13:51:25 -03:00