mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
21 lines
444 B
Groovy
21 lines
444 B
Groovy
plugins {
|
|
id 'war'
|
|
}
|
|
|
|
group = 'com.reajason.javaweb'
|
|
version = ''
|
|
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_6
|
|
targetCompatibility = JavaVersion.VERSION_1_6
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'net.bytebuddy:byte-buddy:1.+'
|
|
providedCompile 'javax.servlet:javax.servlet-api:3.0.1'
|
|
providedCompile 'javax.websocket:javax.websocket-api:1.1'
|
|
} |