From baf58474a45c04adf3e33545bc34b606efd45506 Mon Sep 17 00:00:00 2001 From: Apex Date: Fri, 10 Apr 2026 20:48:26 +0100 Subject: [PATCH] Add missing manifest attributes to the utilmod jar --- build.gradle | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/build.gradle b/build.gradle index c27d7dd..04dcd75 100644 --- a/build.gradle +++ b/build.gradle @@ -66,6 +66,17 @@ configurations { def jarUtilMod = tasks.register(sourceSets.utilmod.jarTaskName, Jar) { archiveClassifier = "utilmod" from(sourceSets.utilmod.output) + manifest { + attributes( + 'Specification-Title': project.name, + 'Specification-Vendor': 'CPW', + 'Specification-Version': project.version, + 'Implementation-Title': project.name, + 'Implementation-Version': project.version, + 'Implementation-Vendor': 'CPW', + 'Automatic-Module-Name': 'serverpacklocator', + ) + } } def copyUtilMod = tasks.register("copyUtilMod", Copy) {