Currently not stable and under heavy development!
A Forge implementation of the Sponge API.
- Homepage
- Source
- Issues
- Documentation
- Community Chat: #sponge on irc.esper.net
- Development Chat: #spongedev on irc.esper.net
- Java 6+
The following steps will ensure your project is cloned properly.
git clone --recursive https://github.com/SpongePowered/Sponge.git
cd Sponge
cp scripts/pre-commit .git/hooks
Note: If you do not have Gradle installed then use ./gradlew
for Unix systems or Git Bash and gradlew.bat
for Windows systems in place of any gradle
command.
Before you are able to build Sponge, you must first prepare the environment:
- Run
gradle setupDecompWorkspace --refresh-dependencies
Note: You may substitute setupDecompWorkspace
for setupCIWorkspace
when building on a CI such as Jenkins.
For Eclipse
- Run
gradle eclipse
- Import Sponge as an existing project (File > Import > General)
- Select the root folder for Sponge and make sure
Search for nested projects
is enabled - Check Sponge when it finishes building and click Finish
For IntelliJ
- Make sure you have the Gradle plugin enabled (File > Settings > Plugins).
- Click File > New > Project from Existing Sources > Gradle and select the root folder for Sponge.
Note: The following is aimed to help you setup run configurations for Eclipse and IntelliJ, if you do not want to be able to run Sponge directly from your IDE then you can skip this.
For Eclipse
- Go to Run > Run Configurations.
- Right-click Java Application and select New.
- Set the current project.
- Set the name as
Sponge (forge/client)
and apply the information for Client below. - Repeat step 1 through 4, then set the name as
Sponge (forge/server)
and apply the information for Server below. - When launching the server for the first time, it will shutdown by itself. You will need to modify eula.txt to set eula=true (this means you agree to the Mojang EULA, if you do not wish to do this then you cannot run the server).
For IntelliJ
- Go to Run > Edit Configurations.
- Click the green + button and select Application.
- Set the name as
Sponge (forge/client)
and apply the information for Client below. - Repeat step 2 and set the name as
Sponge (forge/server)
and apply the information for Server below. - When launching the server for the first time, it will shutdown by itself. You will need to modify eula.txt to set eula=true (this means you agree to the Mojang EULA, if you do not wish to do this then you cannot run the server).
Client
Property | Value |
---|---|
Main class | GradleStart |
VM options | -Dfml.coreMods.load=org.spongepowered.mod.SpongeCoremod |
Working directory | ./run/client (Included in project) |
Module classpath | Sponge (IntelliJ Only) |
Server
Property | Value |
---|---|
Main class | GradleStartServer |
VM Options | -Dfml.coreMods.load=org.spongepowered.mod.SpongeCoremod |
Working directory | ./run/server (Included in project) |
Module classpath | Sponge (IntelliJ Only) |
Note: If you do not have Gradle installed then use ./gradlew for Unix systems or Git Bash and gradlew.bat for Windows systems in place of any 'gradle' command.
Note: You must Setup the environment before you can build Sponge.
In order to build Sponge you simply need to run the gradle
command. You can find the compiled JAR files in ./build/libs
but in most cases
you'll only need 'sponge-x.x.x-x-x.x-x.jar'.
The following steps will update your clone with the official repo.
git remote add upstream [email protected]:SpongePowered/Sponge.git
git pull --rebase upstream master
git submodule update --recursive
A dependency was added, but my IDE is missing it! How do I add it?
If a new dependency was added, you can just restart your IDE and the Gradle plugin for that IDE should pull in the new dependencies.
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.
- Please follow the above guidelines for your pull request(s) to be accepted.
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, or even running
gradle cleanCache
and running through the setup 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.