mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
32 lines
834 B
Kotlin
32 lines
834 B
Kotlin
plugins {
|
|
id("java")
|
|
alias(libs.plugins.lombok)
|
|
}
|
|
|
|
group = "io.github.reajason"
|
|
version = rootProject.version
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation(platform(project(":memshell-party-bom")))
|
|
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")
|
|
testImplementation(platform("org.junit:junit-bom"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |