From 973f61e428b3d06c1447b738b4d0a6161792a701 Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Mon, 19 May 2025 21:46:53 +1000 Subject: [PATCH] Missed runtime only component --- build.gradle | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index f5f7a43c..1bc9a1be 100644 --- a/build.gradle +++ b/build.gradle @@ -233,14 +233,16 @@ dependencies { //implementation 'redis.clients:jedis:5.1.0' } -repositories { - maven { - url = "https://pkgs.dev.azure.com/djtheredstoner/DevAuth/_packaging/public/maven/v1" +if (!isInGHA) { + repositories { + maven { + url = "https://pkgs.dev.azure.com/djtheredstoner/DevAuth/_packaging/public/maven/v1" + } } -} -dependencies { - modRuntimeOnly('me.djtheredstoner:DevAuth-fabric:1.1.0') { - exclude group: 'net.fabricmc', module: 'fabric-loader' + dependencies { + modRuntimeOnly('me.djtheredstoner:DevAuth-fabric:1.1.0') { + exclude group: 'net.fabricmc', module: 'fabric-loader' + } } } \ No newline at end of file