From 2229238280182eb7e70831ef70937a584a4f37fb Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 20 Feb 2024 12:39:57 -0800 Subject: [PATCH] Fix missing -all JAR suffix. https://github.com/johnrengelman/shadow/issues/860 says this is a bug in shadow 8.1.1. Revert to 8.1.0 until there's a fix available. --- cli/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/build.gradle.kts b/cli/build.gradle.kts index 1af7c5b..d8aad90 100644 --- a/cli/build.gradle.kts +++ b/cli/build.gradle.kts @@ -19,7 +19,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar plugins { application - id("com.github.johnrengelman.shadow").version("8.1.1") + id("com.github.johnrengelman.shadow").version("8.1.0") } dependencies { implementation("com.github.ajalt.clikt:clikt:4.2.2")