From c780c54d6bbe515c62bd8ede9254bd14a57619c2 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sat, 27 Oct 2018 15:37:37 +0100 Subject: [PATCH] Force mapJar to always re-run --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index 9ffa3b70e9..9ed6843c6b 100644 --- a/build.gradle +++ b/build.gradle @@ -299,6 +299,11 @@ task mapJar(dependsOn: [downloadMcLibs, build]) { inputs.files downloadMcLibs.outputs.files.files outputs.file(mappedFile) + //Force the task to always run + outputs.upToDateWhen { + return true + } + doLast { logger.lifecycle(":mapping minecraft")