25 lines
375 B
Groovy
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()
|
|
}
|