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
- Issue tracker GitHub
- Project main page (http://novaapi.net)
For all libraries we use, include it in your IDE as a jar library.
- Silk Dependency Injection (http://search.maven.org/remotecontent?filepath=se/jbee/silk-di/0.6/silk-di-0.6.jar
- Guava (http://search.maven.org/remotecontent?filepath=com/google/guava/guava/18.0/guava-18.0.jar)
- JUnit (http://search.maven.org/remotecontent?filepath=junit/junit/4.12/junit-4.12.jar)
- AssertJ
Any contributions should use the NOVA formatter. Instructions for applying to IDEA and Eclipse formatters can be found here.
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