aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-12-30 15:16:01 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-12-30 15:16:01 +0000
commita404663f374dbb4e641f51a0d975ecfb651cb4f3 (patch)
treeb1c9a38637fe3c038ff82bf55e6886934e2b8a97
parentd2ab710218628d51cd2ede566d50492238d797cf (diff)
downloadGT5-Unofficial-a404663f374dbb4e641f51a0d975ecfb651cb4f3.tar.gz
GT5-Unofficial-a404663f374dbb4e641f51a0d975ecfb651cb4f3.tar.bz2
GT5-Unofficial-a404663f374dbb4e641f51a0d975ecfb651cb4f3.zip
$ Fixed Gradle not including the manifest for the Core Mod.
-rw-r--r--build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 240e931d2f..edb2accbd0 100644
--- a/build.gradle
+++ b/build.gradle
@@ -160,6 +160,14 @@ processResources
exclude '**/Thumbs.db'
}
+jar {
+ archiveName = archivesBaseName + "-" + version + ".jar"
+ manifest {
+ attributes 'FMLCorePlugin': 'gtPlusPlus.preloader.asm.Preloader_FMLLoadingPlugin'
+ attributes 'FMLCorePluginContainsFMLMod': 'true'
+ }
+}
+
task sourceJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'