Skip to content

Commit 455b579

Browse files
Adding 'README.md'
1 parent a6c70d1 commit 455b579

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

README.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# RedRestrictionHelper
2+
3+
RedRestrictionHelper is a small Java toolkit for **Minecraft PaperMC plugin development**. It was designed to perform restriction checks via event calls or API queries to the restriction plugins installed on the server.
4+
5+
[![Developed by RedstoneWorld](https://redstoneworld.de/bilder/kooperation/RedstoneWorld-Logo_small.png)](https://redstoneworld.de)
6+
7+
# Development with RedRestrictionHelper
8+
9+
**Note:** Replace `%version%` with the latest version of RedRestrictionHelper:
10+
11+
[![Latest version of 'redrestrictionhelper' @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/redstoneworld/redrestrictionhelper/maven/redrestrictionhelper/latest/a=noarch;xg=de.redstoneworld.redrestrictionhelper/?render=true&show_latest=true)](https://cloudsmith.io/~redstoneworld/repos/redrestrictionhelper/packages/detail/maven/redrestrictionhelper/latest/a=noarch;xg=de.redstoneworld.redrestrictionhelper/)
12+
13+
## Usage with Maven
14+
15+
Add the following to your Java project `pom.xml` file:
16+
17+
```xml
18+
<repositories>
19+
<repository>
20+
<id>redstoneworld-redrestrictionhelper</id>
21+
<url>https://dl.cloudsmith.io/public/redstoneworld/redrestrictionhelper/maven/</url>
22+
</repository>
23+
</repositories>
24+
25+
<repositories>
26+
<dependency>
27+
<groupId>de.redstoneworld.redrestrictionhelper</groupId>
28+
<artifactId>redrestrictionhelper</artifactId>
29+
<version>%version%</version>
30+
</dependency>
31+
</repositories>
32+
```
33+
34+
## Usage with Gradle
35+
36+
Add the following to your Java project `build.gradle` file:
37+
38+
```text
39+
repositories {
40+
maven {
41+
url "https://dl.cloudsmith.io/public/redstoneworld/redrestrictionhelper/maven/"
42+
}
43+
}
44+
45+
dependencies {
46+
implementation 'de.redstoneworld.redrestrictionhelper:redrestrictionhelper:%version%'
47+
}
48+
```
49+
50+
# Documentation
51+
52+
- [Java-Doc](https://redstoneworld.github.io/RedRestrictionHelper/apidocs)
53+
- [Project Dependencies](https://redstoneworld.github.io/RedRestrictionHelper/dependencies.html)

0 commit comments

Comments
 (0)