diff options
author | Juuz <6596629+Juuxel@users.noreply.github.com> | 2021-11-16 22:05:46 +0200 |
---|---|---|
committer | Juuz <6596629+Juuxel@users.noreply.github.com> | 2021-11-16 22:05:46 +0200 |
commit | 2fec94624c03b856a02678faf6523cf719546eaf (patch) | |
tree | ce9e4c56c06cca56e6d98eb569a81c8911b9a97b | |
parent | f0afbe199e479a900065ba61e671bc32cf9035a1 (diff) | |
download | LibGui-2fec94624c03b856a02678faf6523cf719546eaf.tar.gz LibGui-2fec94624c03b856a02678faf6523cf719546eaf.tar.bz2 LibGui-2fec94624c03b856a02678faf6523cf719546eaf.zip |
Fix running GuiTest
-rw-r--r-- | GuiTest/build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/GuiTest/build.gradle b/GuiTest/build.gradle index ee1fa3b..429a718 100644 --- a/GuiTest/build.gradle +++ b/GuiTest/build.gradle @@ -36,7 +36,9 @@ dependencies { compileOnly ("com.google.code.findbugs:jsr305:3.0.2") { transitive = false } - implementation project(':') + implementation project(path: ':', configuration: 'namedElements') + // TODO: Fix this in Loom (namedElements should expose remapped mod* dependencies) + modImplementation "io.github.cottonmc:Jankson-Fabric:${rootProject.jankson_version}" } processResources { |