From 47bcf3b9cc29ad037ca2717103e0d0ba4d81e09c Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Wed, 1 May 2024 20:26:41 +0200 Subject: [PATCH] Remove Manifest attributes not supported when loading through JPMS Bootstraplauncher will itself always load through the normal JPMS loader, which does not expose these attributes on the package. --- build.gradle | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build.gradle b/build.gradle index e091f1e..f50ceab 100644 --- a/build.gradle +++ b/build.gradle @@ -37,12 +37,6 @@ changelog { jar { manifest { attributes( - 'Specification-Title': 'bootstraplauncher', - 'Specification-Vendor': 'mcmodlauncher', - 'Specification-Version': '1', // We are version 1 of ourselves - 'Implementation-Title': project.name, - 'Implementation-Version': "${project.version}+${gradleutils.gitInfo.branch}.${gradleutils.gitInfo.abbreviatedId}", - 'Implementation-Vendor':'mcmodlauncher', 'Git-Commit': gradleutils.gitInfo.abbreviatedId, 'Git-Branch': gradleutils.gitInfo.branch, 'Main-Class': 'cpw.mods.bootstraplauncher.BootstrapLauncher'