Fix missing language loader implementation info

This commit is contained in:
autaut03 2019-02-13 15:33:54 +02:00
parent fe2b5657c5
commit 30311f89e7
1 changed files with 13 additions and 0 deletions

View File

@ -64,6 +64,19 @@ minecraft {
}
}
jar {
manifest {
attributes(["Specification-Title": "Mod Language Provider",
"Specification-Vendor": "Forge Development LLC",
"Specification-Version": "1",
"Implementation-Title": project.name,
"Implementation-Version": "${version}",
"Implementation-Vendor" :"forgelin",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")],
'net/shadowfacts/forgelin/')
}
}
repositories {
jcenter()
}