forked from spring-projects/spring-security-kerberos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
45 lines (41 loc) · 1.36 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url 'https://repo.spring.io/release' }
if (version.contains('-')) {
maven { url 'https://repo.spring.io/milestone' }
}
if (version.endsWith('-SNAPSHOT')) {
maven { url 'https://repo.spring.io/snapshot' }
}
}
plugins {
id 'com.gradle.develocity' version "$develocityVersion"
id 'io.spring.ge.conventions' version "$springGeConventionsVersion"
}
}
plugins {
id "com.gradle.develocity"
id "io.spring.ge.conventions"
}
rootProject.name = 'spring-security-kerberos'
include 'spring-security-kerberos-management'
include 'spring-security-kerberos-bom'
include 'spring-security-kerberos-core'
include 'spring-security-kerberos-client'
include 'spring-security-kerberos-web'
include 'spring-security-kerberos-test'
include 'spring-security-kerberos-samples:sec-client-rest-template'
include 'spring-security-kerberos-samples:sec-server-client-auth'
include 'spring-security-kerberos-samples:sec-server-spnego-form-auth'
include 'spring-security-kerberos-samples:sec-server-win-auth'
include 'spring-security-kerberos-docs'
rootProject.children.each { project ->
project.buildFileName = "${project.name}.gradle"
if (project.name == 'spring-security-kerberos-samples') {
project.children.each { sampleProject ->
sampleProject.buildFileName = "${sampleProject.name}.gradle"
}
}
}