From d41e51f47b4f500840d810844a771d0d1ac8060d Mon Sep 17 00:00:00 2001 From: cpw Date: Wed, 26 Aug 2015 13:57:51 -0400 Subject: [PATCH] Fix eclipse workspace inside the mdk - don't run it through the tokenconverter. Also add in CREDITS-fml.txt to the MDK - it's still required. --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index ef2c6b0cd..1777bd41a 100644 --- a/build.gradle +++ b/build.gradle @@ -172,17 +172,22 @@ task makeMdk(type: Zip) { into ('gradle') { from 'gradle' } + into ('eclipse') { + from 'mdk/eclipse' + } from changelog.output from ('mdk') { filter(ReplaceTokens, tokens: [ VERSION: project.version, MAPPINGS: minecraft.mappings.replace('nodoc_', '') ]) + exclude 'eclipse' rename 'gitignore\\.txt', '.gitignore' from 'MinecraftForge-Credits.txt' from 'MinecraftForge-License.txt' from 'Paulscode IBXM Library License.txt' from 'Paulscode SoundSystem CodecIBXM License.txt' + from 'CREDITS-fml.txt' from 'LICENSE-fml.txt' } }