aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2019-11-11 14:47:37 -0800
committerthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2019-11-11 14:47:37 -0800
commitbf11f1cb96cfeb98a21025459f24f235ff06cd42 (patch)
tree1f2ba123cb23ee764f83a509152892a580b74678 /build.gradle
parenteff6ca9a8dc3d8844443cbba79a535d39d2a2405 (diff)
downloadKotlinForForge-bf11f1cb96cfeb98a21025459f24f235ff06cd42.tar.gz
KotlinForForge-bf11f1cb96cfeb98a21025459f24f235ff06cd42.tar.bz2
KotlinForForge-bf11f1cb96cfeb98a21025459f24f235ff06cd42.zip
Adding files
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
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/")
}
}