From ae15ca8fc3cf279ea3e2bbebebeebff7c529a745 Mon Sep 17 00:00:00 2001 From: trinsdar <30245301+Trinsdar@users.noreply.github.com> Date: Wed, 18 Dec 2024 21:58:54 -0500 Subject: [PATCH] fixed manifest --- forge/build.gradle | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/forge/build.gradle b/forge/build.gradle index 956da68..8bfad75 100644 --- a/forge/build.gradle +++ b/forge/build.gradle @@ -68,12 +68,13 @@ tasks.named('jar', Jar).configure { manifest { attributes([ 'Specification-Title' : mod_id, - 'Specification-Vendor' : "Trinsdar", + 'Specification-Vendor' : "GregTech-Intergalactical", 'Specification-Version' : '1', // We are version 1 of ourselves 'Implementation-Title' : project.name, - 'Implementation-Version' : project.jar.archiveVersion, - 'Implementation-Vendor' : "Trinsdar", - 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") + 'Implementation-Version' : project.version, + 'Implementation-Vendor' : "GregTech-Intergalactical", + 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), + "MixinConfigs" : "tesseract-forge.mixins.json" ]) } }