mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
46 lines
1.2 KiB
Kotlin
46 lines
1.2 KiB
Kotlin
plugins {
|
|
id("java")
|
|
alias(libs.plugins.lombok)
|
|
id("maven-publish-convention")
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
group = "io.github.reajason"
|
|
description = "MemShell Generator for Java"
|
|
version = rootProject.version
|
|
|
|
tasks.compileTestJava {
|
|
javaCompiler.set(javaToolchains.compilerFor {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
})
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":memshell-party-common"))
|
|
implementation(project(":packer"))
|
|
implementation(project(":memshell"))
|
|
implementation(libs.bundles.jna)
|
|
implementation(libs.javax.servlet.api)
|
|
implementation(libs.javax.websocket.api)
|
|
implementation(libs.bcel)
|
|
implementation(libs.okhttp3)
|
|
implementation(libs.logback.classic)
|
|
implementation(libs.jackson.databind)
|
|
implementation(libs.spring.webmvc)
|
|
implementation(libs.spring.webflux)
|
|
implementation(libs.reactor.netty.core)
|
|
testImplementation(libs.junit.jupiter)
|
|
testRuntimeOnly(libs.junit.platform.launcher)
|
|
testImplementation(libs.bundles.mockito)
|
|
} |