build.gradle 531 B

123456789101112131415161718192021222324
  1. plugins {
  2. id 'org.springframework.boot' version '2.2.6.RELEASE'
  3. id 'io.spring.dependency-management' version '1.0.9.RELEASE'
  4. id 'java'
  5. }
  6. group = 'org.springframework.experimental'
  7. version = '0.0.1-SNAPSHOT'
  8. sourceCompatibility = '1.8'
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter'
  14. testImplementation('org.springframework.boot:spring-boot-starter-test') {
  15. exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  16. }
  17. }
  18. test {
  19. useJUnitPlatform()
  20. }