Files
2022-09-06 02:01:15 +09:00

27 lines
574 B
Groovy

plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// embedded tomcat
implementation 'org.apache.tomcat.embed:tomcat-embed-core:8.5.82'
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper:8.5.82'
implementation 'ch.qos.logback:logback-classic:1.2.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
testImplementation 'org.assertj:assertj-core:3.23.1'
}
test {
useJUnitPlatform()
}