build.gradle 623 B

1234567891011121314151617181920212223
  1. plugins {
  2. id "io.spring.convention.root"
  3. id "io.spring.security.release" version "1.0.8"
  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/reference/{version}/index.html"
  12. apiDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/api/"
  13. replaceSnapshotVersionInReferenceDocUrl = true
  14. }
  15. develocity {
  16. buildScan {
  17. termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use'
  18. termsOfUseAgree = 'yes'
  19. }
  20. }