From 545caaa99477264338c3bcd762d3d7642a7cd2e5 Mon Sep 17 00:00:00 2001 From: UselessBullets <80850784+UselessBullets@users.noreply.github.com> Date: Sun, 31 Dec 2023 22:01:38 -0600 Subject: [PATCH 1/3] Update README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 5e40f63..be70da3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,24 @@ # TerrainAPI +## How to include PrismaticLibe in a project +Add this in your `build.gradle`: +```groovy +repositories { + ivy { + url = "https://github.com/UselessBullets" + patternLayout { + artifact "[organisation]/releases/download/r[revision]/[module]-[revision].jar" + m2compatible = true + } + metadataSources { artifact() } + } +} + +dependencies { + + modImplementation "TerrainAPI:terrainapi:${project.terrain_api_version}" + +} +``` + Documentation Eventually! :) From 0b24b11ed52c4f00486a0a8a767a290457d03ae8 Mon Sep 17 00:00:00 2001 From: UselessBullets <80850784+UselessBullets@users.noreply.github.com> Date: Sun, 11 Feb 2024 06:06:01 -0600 Subject: [PATCH 2/3] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index be70da3..9f4b9fa 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,13 @@ Add this in your `build.gradle`: ```groovy repositories { ivy { - url = "https://github.com/UselessBullets" - patternLayout { - artifact "[organisation]/releases/download/r[revision]/[module]-[revision].jar" - m2compatible = true - } - metadataSources { artifact() } - } + url = "https://github.com/UselessSolutions" + patternLayout { + artifact "[organisation]/releases/download/v[revision]/[module]-[revision].jar" + m2compatible = true + } + metadataSources { artifact() } + } } dependencies { From 696bda4c6bb4c9992ada9d060bb90f691307e4ef Mon Sep 17 00:00:00 2001 From: UselessBullets <80850784+UselessBullets@users.noreply.github.com> Date: Fri, 23 Feb 2024 01:16:27 -0600 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f4b9fa..77165cb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # TerrainAPI -## How to include PrismaticLibe in a project +## How to include TerrainAPI in a project Add this in your `build.gradle`: ```groovy repositories {