From ea3c39144ca892b4cced615ad1209d7c70d01a02 Mon Sep 17 00:00:00 2001 From: UselessBullets <80850784+UselessBullets@users.noreply.github.com> Date: Thu, 9 May 2024 06:52:58 -0500 Subject: [PATCH] Update README.md --- README.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 72080a1..69be8aa 100644 --- a/README.md +++ b/README.md @@ -15,20 +15,12 @@ Some user configurable things being: Add this in your `build.gradle`: ```groovy repositories { - ivy { - url = "https://github.com/UselessSolutions" - patternLayout { - artifact "[organisation]/releases/download/v[revision]/[module]-[revision].jar" - m2compatible = true - } - metadataSources { artifact() } - } + mavenCentral() + maven { url = "https://jitpack.io" } } dependencies { - - modImplementation "TerrainAPI:terrainapi:${project.terrain_api_version}" - + modImplementation 'com.github.UselessSolutions:TerrainAPI:v${project.terrain_api_version}' } ```