commit c8585a6b2106a212518d4911010bd05c8723b2da parent 2e8641266d8c5feae90a1393a6a411bf21d65264 Author: Amb0s <ambos@disroot.org> Date: Sat, 21 Jan 2023 16:34:13 +0100 Changed Client run configuration dependency management Diffstat:
M | build.gradle | | | 10 | +++++++++- |
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle @@ -31,6 +31,14 @@ repositories { } metadataSources { artifact() } } + ivy { + url = "https://piston-data.mojang.com" + patternLayout { + artifact "v1/[organisation]/[revision]/[module].jar" + m2compatible = true + } + metadataSources { artifact() } + } } dependencies { @@ -38,7 +46,7 @@ dependencies { mappings loom.layered() {} // Only used to fix the Client run configuration - modRuntimeOnly files("libs/minecraft-client-base.jar") + modRuntimeOnly "objects:client:43db9b498cb67058d2e12d394e6507722e71bb45" modImplementation "babric:fabric-loader:${project.loader_version}"