Newer
Older
org.ntlab.hellorest / build.gradle
  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.  
  7. group = 'org.ntlab'
  8. version = '0.0.1-SNAPSHOT'
  9. sourceCompatibility = '1.8'
  10.  
  11. repositories {
  12. mavenCentral()
  13. }
  14.  
  15. dependencies {
  16. implementation 'org.springframework.boot:spring-boot-starter-jersey'
  17. implementation 'org.springframework.boot:spring-boot-starter-web'
  18. testImplementation('org.springframework.boot:spring-boot-starter-test') {
  19. exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  20. }
  21. }
  22.  
  23. test {
  24. useJUnitPlatform()
  25. }