From 5cdbd1b0109bc0ab9232e9bef2e8264f7ec661ae Mon Sep 17 00:00:00 2001 From: Tyler Hancock Date: Tue, 5 Oct 2021 23:02:14 -0600 Subject: [PATCH] Remove JAR manifest entries from Forge project as this is handled in the root build.gradle. --- Forge/build.gradle | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Forge/build.gradle b/Forge/build.gradle index f1434ac..8ab190f 100644 --- a/Forge/build.gradle +++ b/Forge/build.gradle @@ -78,21 +78,6 @@ tasks.withType(JavaCompile) { source(project(":Common").sourceSets.main.allSource) } -jar { - - manifest { - attributes([ - "Specification-Title" : mod_name, - "Specification-Vendor" : mod_author, - "Specification-Version" : "1", - "Implementation-Title" : project.name, - "Implementation-Version" : project.jar.archiveVersion, - "Implementation-Vendor" : mod_author, - "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") - ]) - } -} - jar.finalizedBy('reobfJar') publishing {