mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
18 lines
464 B
Groovy
18 lines
464 B
Groovy
group = 'com.reajason.javaweb'
|
|
version = rootProject.version
|
|
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_6
|
|
targetCompatibility = JavaVersion.VERSION_1_6
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'net.bytebuddy:byte-buddy'
|
|
implementation 'org.ow2.asm:asm-commons'
|
|
implementation 'javax.servlet:javax.servlet-api'
|
|
implementation 'javax.websocket:javax.websocket-api'
|
|
} |