diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-07-06 17:33:12 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-07-06 17:33:12 +0800 |
| commit | 061ce32c85ca68e206bf1b641be1267682c2de5c (patch) | |
| tree | 32488391b0cd61a6c95fa1fe86f044919775f3b9 | |
| parent | 8897649b40097416ff5edab297b33d72dd4df8bd (diff) | |
| download | RoughlyEnoughItems-061ce32c85ca68e206bf1b641be1267682c2de5c.tar.gz RoughlyEnoughItems-061ce32c85ca68e206bf1b641be1267682c2de5c.tar.bz2 RoughlyEnoughItems-061ce32c85ca68e206bf1b641be1267682c2de5c.zip | |
10/10 maven
| -rwxr-xr-x | build.gradle | 8 | ||||
| -rw-r--r-- | gradle.properties | 2 |
2 files changed, 7 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index 2572b92d8..c451b0f9b 100755 --- a/build.gradle +++ b/build.gradle @@ -46,7 +46,9 @@ dependencies { modApi "net.fabricmc.fabric-api:fabric-networking-v0:${project.fabric_networking}" modApi "net.fabricmc.fabric-api:fabric-resource-loader-v0:${project.fabric_resource_loader}" modApi "cloth:ClothEvents:${cloth_events_version}" - modImplementation "cloth-config:ClothConfig2:${cloth_config_version}" + modImplementation("me.shedaniel.cloth:config-2:${cloth_config_version}") { + transitive = false + } modApi "blue.endless:jankson:${project.jankson_version}" if (includeDep) { include "net.fabricmc.fabric-api:fabric-keybindings-v0:${project.fabric_keybindings}" @@ -54,7 +56,9 @@ dependencies { include "net.fabricmc.fabric-api:fabric-networking-v0:${project.fabric_networking}" include "net.fabricmc.fabric-api:fabric-resource-loader-v0:${project.fabric_resource_loader}" include "cloth:ClothEvents:${cloth_events_version}" - include "cloth-config:ClothConfig2:${cloth_config_version}" + include("me.shedaniel.cloth:config-2:${cloth_config_version}") { + transitive = false + } include "blue.endless:jankson:${project.jankson_version}" } modImplementation "io.github.prospector.modmenu:ModMenu:${modmenu_version}" diff --git a/gradle.properties b/gradle.properties index 80a418680..3d7bef52b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ yarn_version=1.14.3+build.1 fabricloader_version=0.4.8+build.155 jankson_version=1.1.0 cloth_events_version=0.3.1.23 -cloth_config_version=0.2.0 +cloth_config_version=0.3.4 modmenu_version=1.5.4-85 fabric_keybindings=0.1.0+59147463 |
