Remove JAR manifest entries from Forge project as this is handled in the root build.gradle.

This commit is contained in:
Tyler Hancock 2021-10-05 23:02:14 -06:00
parent 299a8d52d9
commit 5cdbd1b010
No known key found for this signature in database
GPG Key ID: D10D32949D03E695

View File

@ -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 {