build.gradle 721 B

1234567891011121314151617181920212223242526
  1. plugins {
  2. id 'org.springframework.boot' version '3.0.7'
  3. id 'io.spring.dependency-management' version '1.0.11.RELEASE'
  4. id 'java'
  5. }
  6. repositories {
  7. mavenCentral()
  8. maven { url "https://repo.spring.io/milestone" }
  9. maven { url "https://repo.spring.io/snapshot" }
  10. }
  11. ext["micrometer.version"] = "1.10.0-SNAPSHOT"
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
  14. implementation 'org.springframework.boot:spring-boot-starter-web'
  15. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  16. testImplementation 'org.springframework.security:spring-security-test'
  17. }
  18. tasks.withType(Test).configureEach {
  19. useJUnitPlatform()
  20. outputs.upToDateWhen { false }
  21. }