Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.97 KB

README.md

File metadata and controls

43 lines (33 loc) · 1.97 KB

Build Status Coverage Tests waffle.io

Nova API

NOVA is a voxel game modding framework designed to allow mods to be run across different voxel games.

NOVA is licensed under the LGPL v3 License. http://opensource.org/licenses/lgpl-3.0.html

Important links

Dependencies

For all libraries we use, include it in your IDE as a jar library.

Formatting

Any contributions should use the NOVA formatter. Instructions for applying to IDEA and Eclipse formatters can be found here.

Removing merge commits

Merge commits happen when you git pull with local commits. An example is here. These can be avoided by running git pull --rebase. Of course you don't want to do this every time:

In the NOVAAPI repo (and any other repos where you want no merge commits)

git config branch.master.rebase true

To set this up automagically in any newly cloned repos:

git config --global branch.autosetuprebase always