build.gradle 644 B

1234567891011121314151617181920212223
  1. plugins {
  2. id "io.spring.convention.root"
  3. id "io.spring.security.release" version "1.0.1"
  4. }
  5. group = "org.springframework.security"
  6. description = "Spring Authorization Server"
  7. springRelease {
  8. repositoryOwner = "spring-projects"
  9. weekOfMonth = 3
  10. dayOfWeek = 2
  11. referenceDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/reference/html/"
  12. apiDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/api/"
  13. replaceSnapshotVersionInReferenceDocUrl = false
  14. }
  15. if (hasProperty("buildScan")) {
  16. buildScan {
  17. termsOfServiceUrl = "https://gradle.com/terms-of-service"
  18. termsOfServiceAgree = "yes"
  19. }
  20. }