Files
excel-download/springboot/server/build.gradle
2023-03-03 01:19:36 +09:00

25 lines
375 B
Groovy

plugins {
id 'java'
id 'war'
}
group = 'hello'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
//서블릿
implementation 'jakarta.servlet:jakarta.servlet-api:6.0.0'
// 스프링 MVC
implementation 'org.springframework:spring-webmvc:6.0.4'
}
tasks.named('test') {
useJUnitPlatform()
}