mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
28 lines
788 B
Groovy
28 lines
788 B
Groovy
plugins {
|
|
id "io.freefair.lombok" version "8.11"
|
|
}
|
|
|
|
group = 'com.reajason.javaweb'
|
|
version = rootProject.version
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'net.bytebuddy:byte-buddy'
|
|
implementation 'org.ow2.asm:asm-commons'
|
|
implementation 'commons-io:commons-io'
|
|
implementation 'org.apache.commons:commons-lang3'
|
|
implementation 'commons-codec:commons-codec'
|
|
implementation 'org.jetbrains:annotations'
|
|
testImplementation platform('org.junit:junit-bom')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
testImplementation "org.mockito:mockito-core"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |