diff --git a/build.gradle b/build.gradle index 243770a..2901a9d 100644 --- a/build.gradle +++ b/build.gradle @@ -23,11 +23,11 @@ dependencies { modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}" - modImplementation "dev.isxander.yacl:yet-another-config-lib-fabric:${project.yacl_version}" - - // Uncomment the following line to enable the deprecated Fabric API modules. - // These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time. - // modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}" + modImplementation ("dev.isxander.yacl:yet-another-config-lib-fabric:${project.yacl_version}") { + exclude(group: "org.quiltmc.parsers") + exclude(group: "com.twelvemonkeys.common") + exclude(group: "com.twelvemonkeys.imageio") + } } processResources { diff --git a/gradle.properties b/gradle.properties index 7dfee91..1b1a6df 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,5 +15,5 @@ archives_base_name=sit! # Dependencies fabric_version=0.89.0+1.20.2 -modmenu_version=7.0.0 -yacl_version=3.0.0+1.20 +modmenu_version=8.0.0 +yacl_version=3.2.1+1.20.2