A permissions plugin for Minecraft servers.
Go to file
2025-11-09 13:13:50 +00:00
.github Update setup-gradle GitHub action 2025-05-10 15:04:42 +01:00
api Upgrade dependencies and require Java 11 2025-06-01 16:41:39 +01:00
bukkit Fix classExists checks to handle NoClassDefFoundError (#4136) 2025-09-21 11:03:07 +01:00
bukkit-legacy Refactor gradle plugin version handling (#3665) 2023-06-24 00:15:03 +01:00
bungee Fix classExists checks to handle NoClassDefFoundError (#4136) 2025-09-21 11:03:07 +01:00
common Fix compile/test error with HostAndPort 2025-11-09 13:13:50 +00:00
fabric Update to Minecraft 1.21.10 2025-10-11 11:17:59 +01:00
forge Update to Minecraft 1.21.10 2025-10-11 11:17:59 +01:00
gradle Update to Minecraft 1.21.10 2025-10-11 11:17:59 +01:00
neoforge Update to Minecraft 1.21.10 2025-10-11 11:17:59 +01:00
nukkit Add configurable read-only mode for commands (#4031) 2025-05-10 14:32:47 +01:00
sponge Update to Minecraft 1.21.6 2025-06-19 18:48:44 +01:00
standalone Downgrade jedis and h2 2025-06-01 19:32:26 +01:00
velocity Add configurable read-only mode for commands (#4031) 2025-05-10 14:32:47 +01:00
.gitattributes Port to NeoForge (#3950) 2024-08-12 19:11:27 +01:00
.gitignore Include standalone data directory in gitignore (#3671) 2023-06-14 21:19:22 +01:00
build.gradle Update to Minecraft 1.21.7 2025-06-30 19:41:56 +01:00
CONTRIBUTING.md Update GitHub URLs to new location (#3686) 2023-06-23 23:34:11 +01:00
gradle.properties Increase memory allocation for Gradle 2022-06-12 10:55:51 +01:00
gradlew Update to Minecraft 1.21.8 2025-07-21 22:08:21 +01:00
gradlew.bat Update to Minecraft 1.21.8 2025-07-21 22:08:21 +01:00
HEADER.txt misc tidying up 2018-11-10 20:21:08 +00:00
LICENSE.txt Update MIT license text to allow GitHub detection (#1400) 2019-01-28 10:46:05 +00:00
README.md Update Fabric to MC 1.20.5 (#3824) 2024-04-23 21:57:20 +01:00
settings.gradle Remove Forge capability attachment 2025-06-19 19:53:09 +01:00

LuckPerms

Build Status javadoc Maven Central Discord

LuckPerms is a permissions plugin for Minecraft servers. It allows server admins to control what features players can use by creating groups and assigning permissions.

The latest downloads, wiki & other useful links can be found on the project homepage at luckperms.net.

It is:

  • fast - written with performance and scalability in mind.
  • reliable - trusted by thousands of server admins, and the largest of server networks.
  • easy to use - setup permissions using commands, directly in config files, or using the web editor.
  • flexible - supports a variety of data storage options, and works on lots of different server types.
  • extensive - a plethora of customization options and settings which can be changed to suit your server.
  • free - available for download and usage at no cost, and permissively licensed so it can remain free forever.

For more information, see the wiki article on Why LuckPerms?

Building

LuckPerms uses Gradle to handle dependencies & building.

Requirements

  • Java 21 JDK or newer
  • Git

Compiling from source

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

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

Tests

There are some automated tests which run during each build.

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, Fabric, Forge, Nukkit, Sponge & 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.