Development
On this page you can find all information related to developing Multiverse. For more information about how to set up
your project that depends on Multiverse, check the following page.
Links
Underneath you can find the most important links:
Building the project
You need to install Gradle 1.0 Milestone 9
(download). If you go to the root directory
and type 'gradle -i' (the -i adds progress information) the project will automatically be compiled and the
artifacts will also be stored in your local maven repository. Other important commands:
//builds the jar from scratch (unit tests are not executed)
gradle -i clean install
//runs the tests
gradle -i test
//runs the integration tests (this can some time).
gradle -i integrationtest