diff options
author | isXander <xandersmith2008@gmail.com> | 2023-06-08 17:38:10 +0100 |
---|---|---|
committer | isXander <xandersmith2008@gmail.com> | 2023-06-08 17:38:10 +0100 |
commit | 9331804e5b42f600b55bd42b75c0599f4a26576b (patch) | |
tree | 70ffd719e363619d83749e4c68e1294468040a7f /forge | |
parent | abb442faaebba2d2fcb86d26e473aeff312b310c (diff) | |
download | YetAnotherConfigLib-9331804e5b42f600b55bd42b75c0599f4a26576b.tar.gz YetAnotherConfigLib-9331804e5b42f600b55bd42b75c0599f4a26576b.tar.bz2 YetAnotherConfigLib-9331804e5b42f600b55bd42b75c0599f4a26576b.zip |
Fix loading images in prod
Diffstat (limited to 'forge')
-rw-r--r-- | forge/build.gradle.kts | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/forge/build.gradle.kts b/forge/build.gradle.kts index c926445..3103f0e 100644 --- a/forge/build.gradle.kts +++ b/forge/build.gradle.kts @@ -45,15 +45,10 @@ dependencies { }) forge(libs.forge) - libs.twelvemonkeys.imageio.core.let { + libs.bundles.twelvemonkeys.imageio.let { implementation(it) - forgeRuntimeLibrary(it) include(it) - } - libs.twelvemonkeys.imageio.webp.let { - implementation(it) forgeRuntimeLibrary(it) - include(it) } "common"(project(path = ":common", configuration = "namedElements")) { isTransitive = false } |