Currently not stable and under heavy development!
A Forge implementation of CanaryLib, licensed under the MIT License.
- Homepage
- Source
- Issues
- Community Chat: #neptune on irc.esper.net
- Development Chat: #neptunedev on irc.esper.net
- Java 6
The following steps will ensure your project is cloned properly.
git clone --recursive https://github.com/NeptunePowered/NeptuneForge.git
cd NeptuneForge
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.
For Eclipse
- Run
gradle setupDecompWorkspace --refresh-dependencies
- Run
gradle eclipse
- Import NeptuneForge as an existing project (File > Import > General)
- Select the root folder for NeptuneForge and make sure
Search for nested projects
is enabled - Check NeptuneForge when it finishes building and click Finish
For IntelliJ
- Run
gradle setupDecompWorkspace --refresh-dependencies
- 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 NeptuneForge.
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 NeptuneForge 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
NeptuneForge (Client)
and apply the information for Client below. - Repeat step 1 through 4, then set the name as
NeptuneForge (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 the server.properties to set onlinemode=false and modify the 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
NeptuneForge (Client)
and apply the information for Client below. - Repeat step 2 and set the name as
NeptuneForge (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 the server.properties to set onlinemode=false and modify the 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.neptunepowered.forge.ForgeCoremod |
Working directory | ./run/client |
Module classpath | NeptuneForge (IntelliJ Only) |
Server
Property | Value |
---|---|
Main class | GradleStartServer |
VM Options | -Dfml.coreMods.load=org.neptunepowered.forge.ForgeCoremod |
Working directory | ./run/server |
Module classpath | NeptuneForge (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.
In order to build NeptuneForge you simply need to run the gradle
command. You can find the compiled JAR file in ./build/libs
labeled similarly to 'neptuneforge-x.x.x-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.
- Please follow the above guidelines for your pull request(s) to be accepted.