Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.8 KB

README.md

File metadata and controls

42 lines (33 loc) · 1.8 KB

Libkit

Libkit (Liberate Bukkit) is a Bukkit API fork that has enhanced features and optimizations as well as compability adjustments to allow older plugins that do not support the new namespace version system that Bukkit put into place.

Contributing

Are you a talented programmer looking to contribute some code? We'd love the help!

  • Any section inside OBC or NMS should be commented with "Libigot start" or "Libigot end", unless it belongs to a single line, in which case "Libigot" should be commented next to that line.
  • The code you write should be as clean as possible.
  • If you have to unshade classes first add them unchanged with a commit message like "Add for diff visibility.", then make your changes with the next commit.
  • You should only modify something if it is server-side. If the change you make affects client-side, it will not work, and it should be denied/removed.
  • All commits should have a title and a bulleted description with each of the added features and/or restrictions.

The license

Libkit and Libigot are licensed under the GPLv3 License.

Getting the source

The latest and greatest source can be found here on GitHub.

If you are using Git, use this command to clone the project:

git clone git://github.com/Libigot/Libkit.git

Compiling the source

Libigot and Libkit use Maven to handle its dependencies.

  • Install Maven 3
  • Checkout this repo and run: mvn

Learn More