diff options
author | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2019-11-11 14:47:37 -0800 |
---|---|---|
committer | thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> | 2019-11-11 14:47:37 -0800 |
commit | bf11f1cb96cfeb98a21025459f24f235ff06cd42 (patch) | |
tree | 1f2ba123cb23ee764f83a509152892a580b74678 /build.gradle | |
parent | eff6ca9a8dc3d8844443cbba79a535d39d2a2405 (diff) | |
download | KotlinForForge-bf11f1cb96cfeb98a21025459f24f235ff06cd42.tar.gz KotlinForForge-bf11f1cb96cfeb98a21025459f24f235ff06cd42.tar.bz2 KotlinForForge-bf11f1cb96cfeb98a21025459f24f235ff06cd42.zip |
Adding files
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index bcca42e..09aac4c 100644 --- a/build.gradle +++ b/build.gradle @@ -117,14 +117,18 @@ shadowJar { jar { manifest { attributes([ - "Specification-Title": "kotlinforforge", - "Specification-Vendor": "thedarkcolour", + "FMLModType": "LANGPROVIDER" + ]) + + attributes([ + "Specification-Title": "Mod Language Provider", + "Specification-Vendor": "Forge", "Specification-Version": "1", // We are version 1 of ourselves "Implementation-Title": project.name, "Implementation-Version": "${version}", "Implementation-Vendor" :"thedarkcolour", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") - ]) + ], "thedarkcolour/kotlinforforge/") } } |