Newer
Older
org.ntlab.acanthus_server / build.gradle
  1. plugins {
  2. id 'org.springframework.boot' version '2.4.5'
  3. id 'io.spring.dependency-management' version '1.0.11.RELEASE'
  4. id 'java'
  5. id 'war'
  6. }
  7.  
  8. group = 'org.ntlab'
  9. version = '0.0.1-SNAPSHOT'
  10. sourceCompatibility = '11'
  11.  
  12. repositories {
  13. mavenCentral()
  14. }
  15.  
  16. dependencies {
  17. implementation 'org.springframework.boot:spring-boot-starter-jersey'
  18. implementation 'org.springframework.boot:spring-boot-starter-web'
  19. developmentOnly 'org.springframework.boot:spring-boot-devtools'
  20. providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
  21. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  22. }
  23.  
  24. test {
  25. useJUnitPlatform()
  26. }