vproxy/proxy/build.gradle.kts

33 lines
546 B
Text
Raw Normal View History

2025-06-02 10:23:48 +02:00
plugins {
application
2025-06-02 10:42:52 +02:00
id("com.gradleup.shadow") version "8.3.6"
2025-06-02 10:23:48 +02:00
eclipse
}
2025-06-02 10:42:52 +02:00
repositories {
mavenCentral()
}
dependencies {
implementation("io.netty:netty-all:4.0.23.Final")
}
2025-06-02 10:23:48 +02:00
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
application {
mainClass = "proxy.Proxy"
tasks.run.get().workingDir = rootProject.file("dev/proxy")
tasks.run.get().workingDir.mkdirs()
tasks.run.get().standardInput = System.`in`
}
2025-06-02 10:42:52 +02:00
tasks.shadowJar {
2025-06-02 10:23:48 +02:00
destinationDirectory = rootProject.file("dev")
archiveFileName = "vloginproxy.jar"
}