Files
spring-authorization-server/build.gradle
Steve Riesenberg 38c2a504b3 Update to spring-security-release-plugin 1.0.3
Closes gh-1594
2024-04-17 17:08:02 -05:00

24 lines
644 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/docs/{version}/reference/html/"
apiDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/api/"
replaceSnapshotVersionInReferenceDocUrl = false
}
if (hasProperty("buildScan")) {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}