build.gradle 677 B

123456789101112131415161718192021222324
  1. plugins {
  2. id 'org.springframework.boot' version '3.0.0-M1'
  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. dependencies {
  12. implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
  13. implementation 'org.springframework.boot:spring-boot-starter-web'
  14. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  15. testImplementation 'org.springframework.security:spring-security-test'
  16. }
  17. tasks.withType(Test).configureEach {
  18. useJUnitPlatform()
  19. outputs.upToDateWhen { false }
  20. }