mirror of
https://github.com/spring-projects/spring-authorization-server.git
synced 2026-05-03 03:39:53 +01:00
c1866c3235
Closes gh-1595
24 lines
643 B
Groovy
24 lines
643 B
Groovy
plugins {
|
|
id "io.spring.convention.root"
|
|
id "io.spring.security.release" version "1.0.3"
|
|
}
|
|
|
|
group = "org.springframework.security"
|
|
description = "Spring Authorization Server"
|
|
|
|
springRelease {
|
|
repositoryOwner = "spring-projects"
|
|
weekOfMonth = 3
|
|
dayOfWeek = 2
|
|
referenceDocUrl = "https://docs.spring.io/spring-authorization-server/reference/{version}/index.html"
|
|
apiDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/api/"
|
|
replaceSnapshotVersionInReferenceDocUrl = true
|
|
}
|
|
|
|
if (hasProperty("buildScan")) {
|
|
buildScan {
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
termsOfServiceAgree = "yes"
|
|
}
|
|
}
|