mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
24 lines
552 B
Kotlin
24 lines
552 B
Kotlin
plugins {
|
|
id("war")
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(11)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
dependencies {
|
|
implementation("commons-fileupload:commons-fileupload:1.5")
|
|
implementation("commons-beanutils:commons-beanutils:1.9.3")
|
|
providedCompile("jakarta.servlet:jakarta.servlet-api:5.0.0")
|
|
testImplementation(libs.junit.jupiter)
|
|
testRuntimeOnly(libs.junit.platform.launcher)
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|