Minecraft

Installing SpongeForge Plugins on a Minecraft Server

Minecraft·May 20, 2026·8 min read

Why SpongeForge exists

Mods and plugins both make Minecraft more interesting, but they live in different ecosystems and rarely cooperate on the same server. By default, picking one means losing the other. SpongeForge is the bridge that breaks that rule, allowing a Forge modded server to also run a specific class of plugins.

There is a catch. Plugins built for Bukkit or Spigot will not load through SpongeForge. You need plugins that were written for the Sponge API. The good news is that most of the popular Bukkit utilities (permissions, anti-grief, world editing, essentials-style commands) already have a Sponge equivalent. The workflow below assumes you have a working SpongeForge server and want to start layering plugins on top.

Step 1: Choosing plugins from Ore

Ore is the official Sponge plugin repository. Open it in your browser and search for the feature you need. Before downloading anything, open the plugin page and read the description carefully. Two details matter most:

  • Dependencies. If a plugin requires another plugin or specific library and you forget to install it, the server will crash during startup. Treat dependency lists as mandatory, not optional.
  • Version compatibility. Click the Versions tab and pick the file that matches your SpongeForge build. Newer is not always better. A mismatched API version is one of the most common reasons a Sponge plugin refuses to load.

Once you select a version, hit the yellow download button and save the `.jar` somewhere you will not lose it.

Step 2: Uploading the plugin file

With the plugin downloaded, the rest happens inside your HolyHosting control panel.

  1. Open the file manager (or the FTP access section) and log in with your panel credentials.
  2. Navigate to the `mods` folder. SpongeForge loads its plugins from the same directory as Forge mods, which trips up a lot of first-time users who go hunting for a `plugins` folder that does not exist.
  3. Click Upload and drop the `.jar` file in. Wait until the progress indicator reaches 100 percent before navigating away.
  4. Return to the main panel page and restart the server.

When the server boots, the new plugin should appear in the console output along with the rest of the mods.

Common issues

Server crashes immediately after adding a plugin. Nine times out of ten this is a missing dependency or a version mismatch. Open the latest crash log, find the line referencing the plugin, and verify that every required library is also present in `mods` and that the version targets the same Sponge API.

Plugin loads but commands do nothing. Usually a permissions issue. Install LuckPerms first, give yourself the appropriate group, then test again.

If the crash log does not point to anything obvious and the plugin still refuses to cooperate, the HolyHosting support team can take a look and help isolate the conflict.

Still have questions?

Come chat with us and we will get back to you as soon as possible!

Contact Support