setup dependencies

This commit is contained in:
Sen 2025-06-02 10:42:52 +02:00
parent 5124c70c02
commit 13d017e583
Signed by: sen
GPG key ID: 3AC50A6F47D1B722

View file

@ -1,9 +1,18 @@
plugins {
application
id("com.gradleup.shadow") version "8.3.6"
eclipse
}
repositories {
mavenCentral()
}
dependencies {
implementation("io.netty:netty-all:4.0.23.Final")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
@ -17,7 +26,7 @@ application {
tasks.run.get().standardInput = System.`in`
}
tasks.jar {
tasks.shadowJar {
destinationDirectory = rootProject.file("dev")
archiveFileName = "vloginproxy.jar"
}