Dropper Block

DROPPER

Drop versions fast

Minecraft Mod Build Automation

Build multi-loader, multi-version Minecraft mods from a single codebase. Zero configuration required.

$curl -fsSL https://sebastianstupak.github.io/dropper/install.sh | sh
10+
MC Versions
3
Loaders
1
Codebase

FEATURES

Everything you need to build professional Minecraft mods

Multi-Version

Multi-Version

Support 10+ Minecraft versions from one codebase. Share code and assets across versions with intelligent inheritance.

Multi-Loader

Multi-Loader

Build for Fabric, Forge, and NeoForge simultaneously. Platform abstractions keep your code clean and portable.

Asset Packs

Asset Packs

Define textures, models, and data once. Inherit and override across versions. No more copy-paste hell.

Zero Config

Zero Config

Convention over configuration. Sensible defaults get you building immediately. Customize when needed.

Fast Builds

Fast Builds

Incremental compilation with Gradle caching. Only rebuild what changed. Deploy in seconds, not minutes.

Testing Built-in

Testing Built-in

Co-located tests with your code. Run tests across all loaders and versions. Catch bugs before release.

GET STARTED

From zero to building in under 60 seconds

1. Install Dropper

Install the Dropper CLI for your platform

$curl -fsSL https://sebastianstupak.github.io/dropper/install.sh | sh

2. Initialize Your Mod

Create a new mod project with sensible defaults

$dropper init my-awesome-mod

3. Add Version Support

Support multiple Minecraft versions instantly

$dropper version add 1.20.1 1.21.1

4. Build Everything

Compile JARs for all loaders and versions

$dropper build --all

EXAMPLES

Common workflows made simple

Add a Custom Item

Create items that work across all versions and loaders

$dropper generate item diamond_pickaxe --creative-tab tools

Support New Version

Add support for the latest Minecraft release

$dropper version add 1.21.4 --inherit-from v2

Run Tests

Test your mod across all loaders before release

$dropper test --loader neoforge --version 1.20.1