Pulse is an open-source Minecraft server written in Java that implements Sponge API. It is licensed under the MIT License.
If you are using Git, use this command to clone the project: git clone git@github.com:InspireNXE/Pulse.git
For Eclipse
- Make sure you have the Gradle plugin installed (Help > Eclipse Marketplace > Gradle Integration Plugin)
- Import Pulse as a Gradle project (File > Import)
- Select the root folder for Pulse and click 'Build Model'
- Check Pulse when it finishes building and click 'Finish'
For IntelliJ
- Make sure you have the Gradle plugin enabled (File > Settings > Plugins).
- Click File > Import Module and select the 'build.gradle' file for Pulse.
Note: If you do not have Gradle installed you can use the gradlew files included with the project in place of 'gradle' in the following command(s). If you are using Git Bash, Unix or OS X then use './gradlew'. If you are using Windows then use 'gradlew.bat'.
In order to build Pulse you simply need to run the gradle
command. You can find the compiled JAR file in ~/build/shaded
.
After building, you can go to ~/build/shaded
and run the command java -jar pulse-1.0.0-SNAPSHOT.jar
.
Are you a talented programmer looking to contribute some code? We'd love the help!
- Open a pull request with your changes, following our guidelines and coding standards.
- Please follow the above guidelines for your pull request(s) to be accepted.
- For help setting up the project, keep reading!
How does the version system work for Pulse?
Our version outputs similarly to
1.0.0-SNAPSHOT.b123
. This can be dissected into{VERSION}.b{BUILD_NUMBER}
.
A dependency was added, but my IDE is missing it! How do I add it?
If a new dependency was added you can simply restart your IDE and it should pull in new dependencies.
Help! Things are not working!
Some issues can be resolved by deleting the '.gradle' folder in your user directory and running through the setup steps again. Otherwise if you are having trouble with something that the README does not cover, feel free to join our IRC channel and ask for assistance.