-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy pathbuild.gradle
50 lines (43 loc) · 1.21 KB
/
build.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
plugins {
id 'io.spring.convention.root'
alias(libs.plugins.security.release)
}
description = 'Spring Security Kerberos'
repositories {
// maven { url 'https://repo.spring.io/snapshot' }
// maven { url 'https://repo.spring.io/milestone' }
// maven { url 'https://repo.spring.io/release' }
mavenCentral()
}
allprojects {
group = 'org.springframework.security.kerberos'
repositories {
mavenCentral()
// 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" }
// }
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 1, 'hours'
}
}
develocity {
buildScan {
termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use'
termsOfUseAgree = 'yes'
}
}
springRelease {
repositoryOwner = "spring-projects"
repositoryName = "spring-security-kerberos"
weekOfMonth = 4
dayOfWeek = 1
referenceDocUrl = "https://docs.spring.io/spring-security-kerberos/reference/{version}/"
apiDocUrl = "https://docs.spring.io/spring-security-kerberos/docs/{version}/api/"
replaceVersionInReferenceDocUrl = true
releaseVersionPrefix = "v"
}