mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
Dev Deploy / Build Jar (ubuntu-latest) (push) Has been cancelled
Dev Deploy / Build Jar (windows-latest) (push) Has been cancelled
Dev Deploy / Docker Push (push) Has been cancelled
Dev Deploy / Deploy to Maven Central (push) Has been cancelled
Dev Deploy / Deploy to Northflank (push) Has been cancelled
MemShell IntegrationTest / xxljob (push) Has been cancelled
MemShell IntegrationTest / springwebmvc (push) Has been cancelled
MemShell IntegrationTest / springwebflux (push) Has been cancelled
MemShell IntegrationTest / struct2 (push) Has been cancelled
MemShell IntegrationTest / tomcat (push) Has been cancelled
MemShell IntegrationTest / glassfish (push) Has been cancelled
MemShell IntegrationTest / jbosseap (push) Has been cancelled
MemShell IntegrationTest / jetty (push) Has been cancelled
MemShell IntegrationTest / payara (push) Has been cancelled
MemShell IntegrationTest / wildfly (push) Has been cancelled
MemShell IntegrationTest / jbossas (push) Has been cancelled
MemShell IntegrationTest / resin (push) Has been cancelled
MemShell IntegrationTest / weblogic (push) Has been cancelled
MemShell IntegrationTest / websphere7 (push) Has been cancelled
MemShell IntegrationTest / websphere (push) Has been cancelled
34 lines
949 B
Kotlin
34 lines
949 B
Kotlin
plugins {
|
|
id("java")
|
|
alias(libs.plugins.lombok)
|
|
id("maven-publish-convention")
|
|
}
|
|
|
|
group = "io.github.reajason"
|
|
description = "Java payload packer for MemShellParty"
|
|
version = rootProject.version
|
|
|
|
dependencies {
|
|
implementation(project(":memshell-party-common"))
|
|
implementation(libs.bcel)
|
|
implementation(libs.bundles.jna)
|
|
implementation(libs.jackson.databind)
|
|
implementation("com.caucho:hessian:4.0.66")
|
|
implementation("commons-beanutils:commons-beanutils:1.9.2")
|
|
implementation("commons-collections:commons-collections:3.2.1")
|
|
implementation("org.apache.commons:commons-collections4:4.0")
|
|
testImplementation(libs.junit.jupiter)
|
|
testRuntimeOnly(libs.junit.platform.launcher)
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |