aboutsummaryrefslogtreecommitdiff
path: root/fabric
diff options
context:
space:
mode:
Diffstat (limited to 'fabric')
-rw-r--r--fabric/build.gradle.kts10
1 files changed, 8 insertions, 2 deletions
diff --git a/fabric/build.gradle.kts b/fabric/build.gradle.kts
index 690fe30..52dfda3 100644
--- a/fabric/build.gradle.kts
+++ b/fabric/build.gradle.kts
@@ -40,8 +40,14 @@ dependencies {
).forEach { modApi(fabricApi.module(it, libs.versions.fabric.api.get())) }
modApi(libs.mod.menu)
- implementation(libs.twelvemonkeys.imageio.core)
- implementation(libs.twelvemonkeys.imageio.webp)
+ libs.twelvemonkeys.imageio.core.let {
+ implementation(it)
+ include(it)
+ }
+ libs.twelvemonkeys.imageio.webp.let {
+ implementation(it)
+ include(it)
+ }
"common"(project(path = ":common", configuration = "namedElements")) { isTransitive = false }
"shadowCommon"(project(path = ":common", configuration = "transformProductionFabric")) { isTransitive = false }