From 7c765ceff54fbab6bf23e9c24b285c12e4eda598 Mon Sep 17 00:00:00 2001 From: js6pak Date: Thu, 8 Feb 2024 20:11:36 +0100 Subject: [PATCH] Fix CI --- minecraft/minecraft-test/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/minecraft/minecraft-test/build.gradle b/minecraft/minecraft-test/build.gradle index 0c790938f..a5e0f8ecf 100644 --- a/minecraft/minecraft-test/build.gradle +++ b/minecraft/minecraft-test/build.gradle @@ -76,6 +76,14 @@ dependencies { // Include the external libraries on the classpath def installerJson = new JsonSlurper().parse(rootProject.file("src/main/resources/fabric-installer.json")) installerJson.libraries.common.each { + if (it.rules) { + if (it.rules.size() == 1 && it.rules.first().action == "disallow") { + return + } + + throw new UnsupportedOperationException("Rules are not implemented yet") + } + productionRuntime it.name }