Files
spring-authorization-server/build.gradle
Steve Riesenberg c7afe536b2 Apply release plugin
Closes gh-1426
2023-11-01 15:31:13 -05:00

24 lines
653 B
Groovy

plugins {
id "io.spring.convention.root"
id "io.spring.security.release" version "1.0.0-SNAPSHOT"
}
group = "org.springframework.security"
description = "Spring Authorization Server"
springRelease {
repositoryOwner = "spring-projects"
weekOfMonth = 2
dayOfWeek = 4
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"
}
}