mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
28 lines
691 B
Groovy
28 lines
691 B
Groovy
group = 'io.github.reajason.tools'
|
|
version = rootProject.version
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation project(":memshell-party-common")
|
|
|
|
implementation 'net.bytebuddy:byte-buddy'
|
|
|
|
implementation 'commons-io:commons-io'
|
|
implementation 'org.apache.commons:commons-lang3'
|
|
implementation 'commons-codec:commons-codec'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp'
|
|
implementation 'org.java-websocket:Java-WebSocket'
|
|
|
|
testImplementation platform('org.junit:junit-bom')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |