aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
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/")
}
}