mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
28 lines
621 B
Groovy
28 lines
621 B
Groovy
plugins {
|
|
id "io.freefair.lombok" version "8.11"
|
|
}
|
|
|
|
group = 'com.reajason.javaweb'
|
|
version = rootProject.version
|
|
|
|
dependencies {
|
|
implementation 'net.bytebuddy:byte-buddy'
|
|
|
|
implementation 'com.caucho:hessian:4.0.66'
|
|
implementation 'commons-beanutils:commons-beanutils:1.9.4'
|
|
|
|
testImplementation platform('org.junit:junit-bom')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |