All Projects → SpongePowered → Spongeforge

SpongePowered / Spongeforge

Licence: mit
A Forge mod that implements SpongeAPI

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Spongeforge

Sponge
The SpongeAPI implementation targeting vanilla Minecraft and 3rd party platforms.
Stars: ✭ 241 (-78.21%)
Mutual labels:  gradle, minecraft, minecraft-server, sponge, mixins
Minecraftdev
Plugin for IntelliJ IDEA that gives special support for Minecraft modding projects.
Stars: ✭ 645 (-41.68%)
Mutual labels:  gradle, minecraft, sponge, mixins
Mixin
Mixin is a trait/mixin and bytecode weaving framework for Java using ASM
Stars: ✭ 557 (-49.64%)
Mutual labels:  gradle, minecraft, mixins
Worldedit
🗺️ Minecraft map editor and mod
Stars: ✭ 2,288 (+106.87%)
Mutual labels:  gradle, minecraft, sponge
Gate
A high performant & paralleled Minecraft proxy server with scalability, flexibility & excellent server version support - ready for the cloud!
Stars: ✭ 102 (-90.78%)
Mutual labels:  minecraft, minecraft-server, sponge
Craftbook
🔧 Machines, ICs, PLCs, and more!
Stars: ✭ 226 (-79.57%)
Mutual labels:  gradle, minecraft, sponge
Spongevanilla
The SpongeAPI implementation for Vanilla Minecraft.
Stars: ✭ 254 (-77.03%)
Mutual labels:  gradle, minecraft, sponge
Arclight
A Bukkit(1.15/1.16) server implementation on Forge using Mixin. ⚡
Stars: ✭ 262 (-76.31%)
Mutual labels:  minecraft, minecraft-server, mixins
Spongeapi
A Minecraft plugin API
Stars: ✭ 1,043 (-5.7%)
Mutual labels:  gradle, minecraft, sponge
Mcsmanager
轻量级,开箱即用,多实例和支持 Docker 的 Minecraft 服务端管理面板
Stars: ✭ 829 (-25.05%)
Mutual labels:  minecraft, minecraft-server
Nodemc
Meta repository for information on the project as a whole
Stars: ✭ 16 (-98.55%)
Mutual labels:  minecraft, minecraft-server
Tabbychat 2
Successor to TabbyChat
Stars: ✭ 53 (-95.21%)
Mutual labels:  gradle, minecraft
Nukkit
Cloudburst Nukkit - Nuclear-Powered Minecraft: Bedrock Edition Server Software
Stars: ✭ 776 (-29.84%)
Mutual labels:  minecraft, minecraft-server
Minet
A (not so) basic Minecraft Pocket Edition server written in C#
Stars: ✭ 706 (-36.17%)
Mutual labels:  minecraft, minecraft-server
Feather
A Minecraft server implementation in Rust
Stars: ✭ 896 (-18.99%)
Mutual labels:  minecraft, minecraft-server
Almura
The official mod of the Almura Client and Server.
Stars: ✭ 14 (-98.73%)
Mutual labels:  minecraft, sponge
Essentials
The essential plugin suite for Minecraft servers.
Stars: ✭ 957 (-13.47%)
Mutual labels:  minecraft, minecraft-server
Minecase
Minecraft server based on Orleans
Stars: ✭ 581 (-47.47%)
Mutual labels:  minecraft, minecraft-server
Drivebackupv2
Uploads Minecraft backups to Google Drive/OneDrive or by (S)FTP
Stars: ✭ 26 (-97.65%)
Mutual labels:  minecraft, minecraft-server
Libby
A runtime dependency management library for plugins running in Java-based Minecraft server platforms.
Stars: ✭ 36 (-96.75%)
Mutual labels:  minecraft, sponge

SpongeForge Build Status

Currently not stable and under heavy development!

A Forge implementation of the Sponge API.

Prerequisites

Cloning

The following steps will ensure your project is cloned properly.

  1. git clone --recursive https://github.com/SpongePowered/SpongeForge.git
  2. cd SpongeForge
  3. cp scripts/pre-commit .git/hooks

Setup

Note: SpongeForge uses Gradle as its build system. The repo includes the Gradle wrapper that will automatically download the correct Gradle version. Local installations of Gradle may work but are untested. To execute the Gradle wrapper, run the ./gradlew script on Unix systems or only gradlew on Windows systems.

Before you are able to build SpongeForge, you must first prepare the environment:

  • Run ./gradlew setupDecompWorkspace --refresh-dependencies

IDE Setup

For Eclipse

  1. Run ./gradlew eclipse
  2. Import Sponge as an existing project (File > Import > General)
  3. Select the root folder for SpongeForge and make sure Search for nested projects is enabled
  4. Check Sponge when it finishes building and click Finish

For IntelliJ

  1. Make sure you have the Gradle plugin enabled (File > Settings > Plugins).
  2. Click File > New > Project from Existing Sources > Gradle and select the root folder for SpongeForge.
  3. Make sure Use default gradle wrapper is selected. Older/newer Gradle versions may work but we only test using the wrapper.
  4. Make sure Create separate module per source set is selected. This ensures that Intellij properly handles SpongeForge's Kotlin and Java dependencies.

Running

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 SpongeForge directly from your IDE then you can skip this.

For Eclipse

  1. Running ./gradlew eclipse should have generated the run configurations automatically.
  2. 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

  1. Run ./gradlew genIntelliJRuns
  2. Restart IntelliJ IDEA or reload the project, the run configuration should now be generated.
  3. 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).

Building

Note: You must Setup the environment before you can build SpongeForge.

In order to build SpongeForge you simply need to run the gradlew command. On Windows systems you should run gradlew instead of ./gradlew to invoke the Gradle wrapper. You can find the compiled JAR files in ./build/libs but in most cases you'll only need 'spongeforge-x.x.x-x-x.x-x.jar'.

Updating your Clone

The following steps will update your clone with the official repo.

  1. git pull
  2. git submodule update --recursive
  3. ./gradlew setupDecompWorkspace --refresh-dependencies

FAQ

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.

Contributing

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].