From ca5035e3a1a03e81714639b5f9b172f2ab8597d5 Mon Sep 17 00:00:00 2001 From: Juuz <6596629+Juuxel@users.noreply.github.com> Date: Tue, 16 Aug 2022 15:55:59 +0300 Subject: Only apply runtime ModMenu to the test subproject --- GuiTest/build.gradle | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'GuiTest') diff --git a/GuiTest/build.gradle b/GuiTest/build.gradle index 17d3faa..48a5d57 100644 --- a/GuiTest/build.gradle +++ b/GuiTest/build.gradle @@ -16,13 +16,14 @@ loom { } } -//configurations.modApi { -// resolutionStrategy.cacheChangingModulesFor 0, 'seconds' -//} - repositories { - mavenLocal(); maven { url "https://server.bbkr.space/artifactory/libs-release" } + maven { + url = "https://maven.terraformersmc.com/releases" + content { + includeGroup "com.terraformersmc" + } + } } dependencies { @@ -36,6 +37,9 @@ dependencies { implementation project(path: ':', configuration: 'namedElements') // TODO: Fix this in Loom (namedElements should expose remapped mod* dependencies) modImplementation "io.github.cottonmc:Jankson-Fabric:${rootProject.jankson_version}" + modLocalRuntime("com.terraformersmc:modmenu:$rootProject.modmenu_version") { + exclude group: 'net.fabricmc.fabric-api' + } } processResources { -- cgit