build.gradle 677 B

1234567891011121314151617181920212223242526
  1. plugins {
  2. id 'java'
  3. id 'org.springframework.boot' version '2.7.12'
  4. id 'io.spring.dependency-management' version '1.0.15.RELEASE'
  5. id "nebula.integtest" version "8.2.0"
  6. }
  7. group = 'com.example'
  8. version = '0.0.1-SNAPSHOT'
  9. sourceCompatibility = '11'
  10. repositories {
  11. mavenCentral()
  12. }
  13. dependencies {
  14. implementation 'org.springframework.boot:spring-boot-starter-security'
  15. implementation 'org.springframework.boot:spring-boot-starter-web'
  16. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  17. testImplementation 'org.springframework.security:spring-security-test'
  18. }
  19. tasks.withType(Test).configureEach {
  20. useJUnitPlatform()
  21. outputs.upToDateWhen { false }
  22. }