forked from spring-projects/spring-security-kerberos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
26 lines (24 loc) · 815 Bytes
/
settings.gradle
File metadata and controls
26 lines (24 loc) · 815 Bytes
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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url 'https://repo.spring.io/milestone' }
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}"
}
}
}
}
rootProject.name = 'spring-security-kerberos-samples'
include ':sec-client-rest-template'
include ':sec-server-client-auth'
include ':sec-server-spnego-form-auth'
include ':sec-server-spnego-form-auth-xml'
include ':sec-server-spnego-webflux'
include ':sec-server-spnego-web'
include ':sec-server-win-auth'
include ':spring-security-kerberos-samples-common'