A permissions plugin for Minecraft servers.
Go to file
Luck 9b1c73ed23
Implement use of a Maven Central mirror for dependency downloads
People keep telling me that LP's use of Maven Central for downloading dependencies is not allowed / inappropriate / abusive. I disagree but I'm bored of hearing it. Using a mirror will mean that all of the load is taken off of Central, and is instead absorbed by my servers + (mostly) Cloudflare.

- The mirror is (currently) hosted at https://nexus.lucko.me/repository/maven-central/
- The prospect of the mirror becoming compromised is not a concern. LuckPerms compares the downloaded content against a checksum before saving it.
- The prospect of the mirror going offline is also not a concern. We will fallback to Maven Central if a connection cannot be made to the mirror.
2019-01-07 16:56:16 +00:00
api Refactor PlayerLoginProcessEvent 2019-01-02 13:54:55 +00:00
bukkit Some misc refactoring / code cleanup 2019-01-07 15:08:13 +00:00
bukkit-legacy Update gradle wrapper and buildscript plugins 2018-09-19 19:41:47 +01:00
bungee Refactor PlayerLoginProcessEvent 2019-01-02 13:54:55 +00:00
common Implement use of a Maven Central mirror for dependency downloads 2019-01-07 16:56:16 +00:00
gradle/wrapper Update Gradle to 5.0 2018-12-15 22:24:17 +00:00
nukkit Refactor PlayerLoginProcessEvent 2019-01-02 13:54:55 +00:00
sponge Some misc refactoring / code cleanup 2019-01-07 15:08:13 +00:00
velocity Some misc refactoring / code cleanup 2019-01-07 15:08:13 +00:00
.gitignore Update gitignore 2018-08-31 20:27:13 +01:00
build.gradle misc tidying up 2018-11-10 20:21:08 +00:00
CONTRIBUTING.md Remove lombok from the project 2018-01-07 18:40:23 +00:00
gradlew Make gradlew script executable by default (#1338) 2018-12-19 09:24:44 +00:00
gradlew.bat Update Gradle to 5.0 2018-12-15 22:24:17 +00:00
HEADER.txt misc tidying up 2018-11-10 20:21:08 +00:00
LICENSE.txt Cleanup poms, update copyright header 2017-04-15 19:01:52 +01:00
README.md Update README.md 2018-11-06 16:36:34 +00:00
settings.gradle replace LoadingCache with more simple LoadingMap alternative when no auto expiry is needed 2018-12-14 18:37:56 +00:00

alt text

LuckPerms

Build Status Javadocs Maven Central Discord

LuckPerms is an advanced permissions implementation aiming to be a fast, reliable and flexible alternative to existing permission plugins. The project's main goals are centered around high performance and a wide feature set, filling the gaps of functionality and building upon existing features found in other plugins.

LuckPerms also includes an extensive API for developers, and support for a variety of Minecraft server software & data storage options.

Still not convinced? More information can be found on the wiki, under: Why LuckPerms?

The latest downloads can be found on the project's homepage.

More information about the project & how to use the plugin can be found in the wiki.

Building

LuckPerms uses Gradle to handle dependencies & building.

Requirements

  • Java 8 JDK or newer
  • Git

Compiling from source

git clone https://github.com/lucko/LuckPerms.git
cd LuckPerms/
./gradlew build

You can find the output jars in the build/libs directories.

Contributing

Pull Requests

If you make any changes or improvements to the plugin which you think would be beneficial to others, please consider making a pull request to merge your changes back into the upstream project. (especially if your changes are bug fixes!)

LuckPerms loosely follows the Google Java Style Guide. Generally, try to copy the style of code found in the class you're editing.

Project Layout

The project is split up into a few separate modules.

  • API - The public, semantically versioned API used by other plugins wishing to integrate with and retrieve data from LuckPerms. This module (for the most part) does not contain any implementation itself, and is provided by the plugin.
  • Common - The common module contains most of the code which implements the respective LuckPerms plugins. This abstract module reduces duplicated code throughout the project.
  • Bukkit, BungeeCord, Sponge, Nukkit & Velocity - Each use the common module to implement plugins on the respective server platforms.

License

LuckPerms is licensed under the permissive MIT license. Please see LICENSE.txt for more info.