mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
22 lines
674 B
Groovy
22 lines
674 B
Groovy
group = 'io.github.reajason'
|
|
description = "Normal Java MemShell"
|
|
version = rootProject.version
|
|
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'net.bytebuddy:byte-buddy'
|
|
implementation 'org.ow2.asm:asm-commons'
|
|
implementation 'javax.servlet:javax.servlet-api'
|
|
implementation 'javax.websocket:javax.websocket-api'
|
|
implementation 'org.springframework:spring-webmvc'
|
|
implementation 'org.springframework:spring-webflux'
|
|
implementation 'io.projectreactor.netty:reactor-netty-core'
|
|
} |