From 554e643e8819f966ec134f08097871b0d029d88d Mon Sep 17 00:00:00 2001 From: Graham Date: Sun, 10 May 2020 14:39:04 +0100 Subject: [PATCH] Rename the fat jar inside the shadow distribution to openrs2.jar This removes all the extra cruft (like the whole artifact ID and the version). Signed-off-by: Graham --- all/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/all/build.gradle.kts b/all/build.gradle.kts index 7e98db41..2cddab18 100644 --- a/all/build.gradle.kts +++ b/all/build.gradle.kts @@ -25,6 +25,8 @@ dependencies { } tasks.shadowJar { + archiveFileName.set("openrs2.jar") + minimize { exclude(dependency("org.jetbrains.kotlin:kotlin-reflect")) }