mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
30 lines
949 B
Kotlin
30 lines
949 B
Kotlin
plugins {
|
|
id("java")
|
|
id("war")
|
|
id("org.springframework.boot") version "3.3.7"
|
|
id("io.spring.dependency-management") version "1.1.7"
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api")
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
runtimeOnly("com.h2database:h2")
|
|
implementation("ognl:ognl:2.7.3")
|
|
implementation("commons-jxpath:commons-jxpath:1.3")
|
|
implementation("commons-beanutils:commons-beanutils:1.9.3")
|
|
implementation("org.freemarker:freemarker:2.3.23")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |