drigio / ProjectEssentials-Permissions

๐Ÿ”’ Project Essentials Permissions API - additional module for Essentials; Just controlling player permissions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

๐Ÿ”’ Project Essentials: PermissionsAPI

GitHub

Permissions API for Forge mods.

CURRENTLY UNSTABLE VERSION โ—โ—โ—

โ— Compatibility with forge 28.0.X version.

๐Ÿง Install using Gradle (for developers):

If your project uses Gradle as Build Tool, then use the code below to add dependencies:
repositories {
    maven { url("https://jitpack.io") }
}

dependencies {
    compile(
        group: "com.github.projectessentials",
        name: "ProjectEssentials-Permissions",
        version: "v1.14.4-0.2.0.0"
    )
}

๐Ÿค” Install using Maven (for developers):

If your project uses Maven as Build Tool, then use the code below to add dependencies:
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependency>
	<groupId>com.github.projectessentials</groupId>
	<artifactId>ProjectEssentials-Permissions</artifactId>
	<version>v1.14.4-0.2.0.0</version>
</dependency>

๐ŸŽฎ Installation instruction (for playing):

Just move Project Essentials Permissions-1.14.4-1.X.X.X.jar to mods directory:
Important note: don't forget install mod dependencies!
.
โ”œโ”€โ”€ assets
โ”œโ”€โ”€ config
โ”œโ”€โ”€ libraries
โ”œโ”€โ”€ mods (that's how it should be)
โ”‚   โ”œโ”€โ”€ Project Essentials Core-MOD-1.14.4-1.X.X.X.jar.
โ”‚   โ””โ”€โ”€ Project Essentials Permissions-1.14.4-1.X.X.X.jar.
โ””โ”€โ”€ ...
Additional information:
    - kotlin-std lib version: 1.3.50
    - kotlinx serialization version: 0.12.0
    - target jvm version: 1.8

After you got the dependencies and the library itself:

Note: this library is written in kotlin, but in java you can work with this API too, but there may be some not beautiful moments. One of these points is that you will see all the properties and fields with internal modifiers (in my library).

Made with ๐Ÿ’• by MairwunNx

About

๐Ÿ”’ Project Essentials Permissions API - additional module for Essentials; Just controlling player permissions.

License:GNU Lesser General Public License v3.0


Languages

Language:Kotlin 90.5%Language:Groovy 9.5%