vproxy/proxy/build.gradle.kts

24 lines
394 B
Text
Raw Normal View History

2025-06-02 10:23:48 +02:00
plugins {
application
eclipse
}
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`
}
tasks.jar {
destinationDirectory = rootProject.file("dev")
archiveFileName = "vloginproxy.jar"
}