build.gradle 842 B

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