From 13d017e583d0d994a5d20fec3559113b58496b98 Mon Sep 17 00:00:00 2001 From: Sen Date: Mon, 2 Jun 2025 10:42:52 +0200 Subject: [PATCH] setup dependencies --- proxy/build.gradle.kts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/proxy/build.gradle.kts b/proxy/build.gradle.kts index a0e8d91..40f1662 100644 --- a/proxy/build.gradle.kts +++ b/proxy/build.gradle.kts @@ -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" }