We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6afaa2 commit 545caaaCopy full SHA for 545caaa
1 file changed
README.md
@@ -1,3 +1,24 @@
1
# TerrainAPI
2
3
+## How to include PrismaticLibe in a project
4
+Add this in your `build.gradle`:
5
+```groovy
6
+repositories {
7
+ ivy {
8
+ url = "https://github.com/UselessBullets"
9
+ patternLayout {
10
+ artifact "[organisation]/releases/download/r[revision]/[module]-[revision].jar"
11
+ m2compatible = true
12
+ }
13
+ metadataSources { artifact() }
14
15
+}
16
+
17
+dependencies {
18
19
+ modImplementation "TerrainAPI:terrainapi:${project.terrain_api_version}"
20
21
22
+```
23
24
Documentation Eventually! :)
0 commit comments