mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
23 lines
513 B
Kotlin
23 lines
513 B
Kotlin
plugins {
|
|
id("war")
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_6
|
|
targetCompatibility = JavaVersion.VERSION_1_6
|
|
}
|
|
|
|
dependencies {
|
|
implementation("commons-fileupload:commons-fileupload:1.3.3")
|
|
implementation("commons-beanutils:commons-beanutils:1.9.2")
|
|
providedCompile("javax.websocket:javax.websocket-api:1.1")
|
|
providedCompile("javax.servlet:servlet-api:2.5")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|