From d2cdcb02fc4fe59824008176f420fe792181fe81 Mon Sep 17 00:00:00 2001 From: Jonas Herzig Date: Wed, 10 Jul 2024 18:20:19 +0200 Subject: [PATCH] Remove unnecessary isTransitive exclusion Now that it's using Modrinth maven, there won't be any transitive dependencies anyway. --- build.gradle.kts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 40724baa..3c654f09 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -195,9 +195,7 @@ dependencies { } if (mcVersion >= 11600) { - modCompileOnly("maven.modrinth:iris:1.18.x-v1.2.0") { - isTransitive = false // we do not want to upgrade our libs, we only need this to compile our mixins - } + modCompileOnly("maven.modrinth:iris:1.18.x-v1.2.0") } testImplementation("junit:junit:4.11")