From 8c6d65f1476c71407c4a3dbf06eb35430defefa4 Mon Sep 17 00:00:00 2001 From: Jonas Tobias Hopusch Date: Sat, 12 Mar 2022 12:17:33 +0100 Subject: [PATCH] Reintroduce shadowJar support using external gradle plugin Since the project now contains a dependency again (commons-cli), I need to be able to generate jars with those dependencies packaged. (fat jars) Partially reverts 28a461b8fcdf72e970e61372b19e615317e989d0 --- build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 33d7497..cf113f2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,6 +5,8 @@ plugins { // Apply the application plugin to add support for building a CLI application in Java. application java + + id ("com.github.johnrengelman.shadow") version "7.1.2" } repositories {