mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
36 lines
828 B
Kotlin
36 lines
828 B
Kotlin
plugins {
|
|
id("java-library")
|
|
alias(libs.plugins.lombok)
|
|
id("maven-publish-convention")
|
|
}
|
|
|
|
group = "io.github.reajason"
|
|
description = "Common Utilities for MemShellParty"
|
|
version = rootProject.version
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.byte.buddy)
|
|
api(libs.asm.commons)
|
|
api(libs.commons.io)
|
|
api(libs.commons.lang3)
|
|
api(libs.commons.codec)
|
|
api(libs.jetbrains.annotations)
|
|
testImplementation(libs.junit.jupiter)
|
|
testRuntimeOnly(libs.junit.platform.launcher)
|
|
testImplementation(libs.bundles.mockito)
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events("passed", "skipped", "failed")
|
|
}
|
|
} |