From 425c01ca70a33e1912c11766f4603b66181c10f0 Mon Sep 17 00:00:00 2001 From: misterx Date: Sun, 8 Dec 2024 22:59:18 +0100 Subject: [PATCH] license fix --- LICENSE.md => LICENSE | 0 build.gradle | 5 ++--- 2 files changed, 2 insertions(+), 3 deletions(-) rename LICENSE.md => LICENSE (100%) diff --git a/LICENSE.md b/LICENSE similarity index 100% rename from LICENSE.md rename to LICENSE diff --git a/build.gradle b/build.gradle index 972c5c47..8c0fc87a 100644 --- a/build.gradle +++ b/build.gradle @@ -72,9 +72,8 @@ java { } jar { - from("LICENSE") { - rename { "${it}_${project.base.archivesName.get()}"} - } + from("LICENSE") + from(configurations.includedLibrary.collect { it.isDirectory() ? it : zipTree(it) }) { include 'com/seedfinding/**' }