Skip to content

Commit 6a1c589

Browse files
committed
Added readme.
1 parent 434303d commit 6a1c589

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

readme.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
## 🔒 Project Essentials: PermissionsAPI
2+
3+
> ## Permissions API for Forge mods.
4+
5+
> #### CURRENTLY UNSTABLE VERSION ❗❗❗
6+
7+
#### ❗ Compatibility with forge `28.0.X` version.
8+
9+
## 🧐 Install using Gradle:
10+
> ##### If your project uses Gradle as Build Tool, then use the code below to add dependencies:
11+
12+
```groovy
13+
repositories {
14+
maven { url("https://jitpack.io") }
15+
}
16+
17+
dependencies {
18+
compile(
19+
group: "com.github.projectessentials",
20+
name: "ProjectEssentials-Permissions",
21+
version: "v1.14.4-0.1.0.1"
22+
)
23+
}
24+
```
25+
26+
## 🤔 Install using Maven:
27+
> ##### If your project uses Maven as Build Tool, then use the code below to add dependencies:
28+
29+
```xml
30+
<repositories>
31+
<repository>
32+
<id>jitpack.io</id>
33+
<url>https://jitpack.io</url>
34+
</repository>
35+
</repositories>
36+
37+
<dependency>
38+
<groupId>com.github.projectessentials</groupId>
39+
<artifactId>ProjectEssentials-Permissions</artifactId>
40+
<version>v1.14.4-0.1.0.1</version>
41+
</dependency>
42+
```
43+
44+
```
45+
Additional information:
46+
- kotlin-std lib version: 1.3.50
47+
- kotlinx ыerialization version: 0.12.0
48+
- target jvm version: 1.8
49+
```
50+
51+
### After you got the dependencies and the library itself:
52+
53+
[test]("google.com")
54+
55+
> ## Made with 💕 by [MairwunNx](https://mairwunnx.github.io/)

0 commit comments

Comments
 (0)