You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
653 B
23 lines
653 B
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" |
|
} |
|
}
|
|
|