diff options
author | Falkreon <falkreon@gmail.com> | 2019-08-25 21:38:11 -0500 |
---|---|---|
committer | Falkreon <falkreon@gmail.com> | 2019-08-25 21:38:11 -0500 |
commit | c365433e34bdd95e83740a5af6a3338444a3540a (patch) | |
tree | 8ecabd4ee8dacc31ae5237094dd85f82108b30ab /GuiTest/build.gradle | |
parent | 2ae4c11c84ad90031b0fd32e011c49849352bcc5 (diff) | |
download | LibGui-c365433e34bdd95e83740a5af6a3338444a3540a.tar.gz LibGui-c365433e34bdd95e83740a5af6a3338444a3540a.tar.bz2 LibGui-c365433e34bdd95e83740a5af6a3338444a3540a.zip |
More gui test, fix slot offsets, tooltips, and button hovers
Diffstat (limited to 'GuiTest/build.gradle')
-rw-r--r-- | GuiTest/build.gradle | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/GuiTest/build.gradle b/GuiTest/build.gradle index c45af5e..ddd6891 100644 --- a/GuiTest/build.gradle +++ b/GuiTest/build.gradle @@ -22,6 +22,10 @@ group = project.maven_group minecraft { } +//configurations.modApi { +// resolutionStrategy.cacheChangingModulesFor 0, 'seconds' +//} + repositories { mavenLocal(); maven { url "http://server.bbkr.space:8081/artifactory/libs-release" } @@ -39,7 +43,9 @@ dependencies { modApi "io.github.prospector:modmenu:1.7.9+build.118" - modApi "io.github.cottonmc:LibGui:1.3.1-SNAPSHOT" + //modApi ("io.github.cottonmc:LibGui:1.3.1-SNAPSHOT") { changing = true } + compile project(":LibGUI"); + runtime project(":LibGUI"); } processResources { |