mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 15:10:43 +08:00
19 lines
392 B
Groovy
19 lines
392 B
Groovy
plugins {
|
|
id 'war'
|
|
}
|
|
|
|
group = 'com.reajason.javaweb.vul'
|
|
version = ''
|
|
|
|
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'
|
|
providedCompile "javax.servlet:servlet-api:2.5"
|
|
} |