From 492fa86054a42ea11ab473f6e183e57f5f5c8033 Mon Sep 17 00:00:00 2001 From: Bixilon Date: Tue, 18 Oct 2022 00:05:05 +0200 Subject: [PATCH] gradle: rename fat jar with os and architecture --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 78a108e86..7ca377291 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -372,7 +372,7 @@ application { } val fatJar = task("fatJar", type = Jar::class) { - archiveBaseName.set("${project.name}-fat") + archiveBaseName.set("${project.name}-fat-${PlatformInfo.OS.name.toLowerCase()}-${PlatformInfo.ARCHITECTURE.name.toLowerCase()}") manifest { attributes["Implementation-Title"] = project.name.capitalized() attributes["Implementation-Version"] = project.version