From a404663f374dbb4e641f51a0d975ecfb651cb4f3 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Mon, 30 Dec 2019 15:16:01 +0000 Subject: $ Fixed Gradle not including the manifest for the Core Mod. --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) 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' -- cgit