Various libraries made for Pandacube’s plugins
Go to file
Marc Baloup 566ffee3ae Readme + update POM + Tell jitpack we use Java 17 2022-07-22 16:30:27 +02:00
pandalib-bungee New modules again + some pom refactor 2022-07-22 00:17:36 +02:00
pandalib-bungee-permissions New modules again + some pom refactor 2022-07-22 00:17:36 +02:00
pandalib-bungee-players new module pandalib-paper-players 2022-07-22 02:16:45 +02:00
pandalib-chat Refactor PlayerManager API + little fixes in Chat API 2022-07-21 02:19:28 +02:00
pandalib-cli New modules again + some pom refactor 2022-07-22 00:17:36 +02:00
pandalib-core New modules again + some pom refactor 2022-07-22 00:17:36 +02:00
pandalib-db renamed modules dir 2022-07-20 13:28:01 +02:00
pandalib-net New modules again + some pom refactor 2022-07-22 00:17:36 +02:00
pandalib-netapi renamed modules dir 2022-07-20 13:28:01 +02:00
pandalib-paper New modules again + some pom refactor 2022-07-22 00:17:36 +02:00
pandalib-paper-permissions New modules again + some pom refactor 2022-07-22 00:17:36 +02:00
pandalib-paper-players new module pandalib-paper-players 2022-07-22 02:16:45 +02:00
pandalib-paper-reflect new Maven module again + now generates javadoc 2022-07-20 16:26:29 +02:00
pandalib-permissions renamed modules dir 2022-07-20 13:28:01 +02:00
pandalib-players-permissible New modules again + some pom refactor 2022-07-22 00:17:36 +02:00
pandalib-players-standalone Refactor PlayerManager API + little fixes in Chat API 2022-07-21 02:19:28 +02:00
pandalib-reflect renamed modules dir 2022-07-20 13:28:01 +02:00
pandalib-util new Maven module again + now generates javadoc 2022-07-20 16:26:29 +02:00
.gitignore Big refactor of Pandalib. More modules and better managed dependencies 2022-07-20 13:18:57 +02:00
LICENSE.md Added License 2022-06-25 19:23:38 +02:00
Readme.md Readme + update POM + Tell jitpack we use Java 17 2022-07-22 16:30:27 +02:00
jitpack.yml Readme + update POM + Tell jitpack we use Java 17 2022-07-22 16:30:27 +02:00
pom.xml Readme + update POM + Tell jitpack we use Java 17 2022-07-22 16:30:27 +02:00

Readme.md

Pandalib

Development library for Minecraft server applications and plugins

This repository contains a collection of maven modules that are used for the development of our Minecraft server. Those modules are made open source so they can be used by other developpers. Each of them provides different functionalities that are detailed in their respective Readme file (if any).

  • pandalib-util General purpose utility and helper classes
  • pandalib-chat A chat API working on top of the Adventure API
  • pandalib-db An ORM working with a MySQL server through JDBC
  • pandalib-permissions A general purpose permission system
  • pandalib-reflect A reflection wrapper to make reflective operation easier
  • pandalib-netapi A poorly designed, but working TCP network library
  • pandalib-net A better-designed, packet-based TCP network library (still in development)
  • pandalib-players-standalone A library to handle classes representing online or offline player
  • pandalib-players-permissible An extension of pandalib-players-standalone with support for the permission system pandalib-permissions
  • pandalib-core A catch-all module for some helper classes that didnt have their own module yet
  • pandalib-bungee Utility and helper classes to use in Bungeecord plugins
  • pandalib-bungee-permissions Integration of the permission system pandalib-permissions into Bungeecord
  • pandalib-bungee-players A partial extension and implementation of pandalib-players-standalone for Bungeecord plugin
  • pandalib-paper Utility and helper classes to use in Spigot/Paper plugins
  • pandalib-paper-reflect A reflection API to ease access to NMS and OBS stuff in Paper server.
  • pandalib-paper-permissions Integration of the permission system pandalib-permissions into Bukkit/Spigot/Paper permission system
  • pandalib-paper-players A partial extension and implementation of pandalib-players-standalone for Paper plugin
  • pandalib-cli Utility and helper classes for a standalone Java application

Use in your projects

To use one of the module as a Maven dependency, add the Jitpack repository in the <repositories> section in your pom.xml:

    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>

Then, add any module you need in your <dependencies> section:

    <dependencies>
        <dependency>
            <groupId>fr.pandacube.pandalib</groupId>
            <artifactId>pandalib-util</artifactId> <!-- Put here the name of the module you want -->
            <version>master-SNAPSHOT</version> <!-- last version on master branch -->
        </dependency>
    </dependencies>

You can use the version as provided in the code above, but if you want a stable version, check those available in the tag section. Dont forget to take a look at the modules readme file, for any details you may need related to that specific module.