diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-12-30 15:16:01 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-12-30 15:16:01 +0000 |
commit | a404663f374dbb4e641f51a0d975ecfb651cb4f3 (patch) | |
tree | b1c9a38637fe3c038ff82bf55e6886934e2b8a97 | |
parent | d2ab710218628d51cd2ede566d50492238d797cf (diff) | |
download | GT5-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.gradle | 8 |
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' |