From 0d8eed4a8da9c8624e26fdcce09c594a6dfd8d1c Mon Sep 17 00:00:00 2001 From: Provismet <17149901+Provismet@users.noreply.github.com> Date: Sat, 17 Aug 2024 14:10:36 +0100 Subject: [PATCH] Replace modapi with modimplementation. --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 3eb4e52..b303af1 100644 --- a/build.gradle +++ b/build.gradle @@ -25,13 +25,13 @@ dependencies { // Fabric API. This is technically optional, but you probably want it anyway. modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" - modApi("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_version}") { + modImplementation("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_version}") { exclude(group: "net.fabricmc.fabric-api") } - modApi "com.terraformersmc:modmenu:${project.modmenu_version}" + modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}" - implementation 'com.illposed.osc:javaosc-core:0.8' - include 'com.illposed.osc:javaosc-core:0.8' + implementation 'com.illposed.osc:javaosc-core:0.9' + include 'com.illposed.osc:javaosc-core:0.9' } processResources {