IntelliJ IDEA plugin that adds a "Prism Mod" option to the New Project wizard. Generates a complete Prism multi-version Minecraft mod project.
Pick your Minecraft versions, choose loaders (Fabric, NeoForge, Forge, Legacy Forge), and the plugin generates the full project structure with:
settings.gradle.ktsandbuild.gradle.ktswith Prism DSL- Latest Minecraft and loader defaults fetched online when available, with offline fallbacks
- Source directories for each version and loader
- Entry point classes (ModInitializer, @Mod, etc.)
- Metadata files aligned with Prism template expansion (
fabric.mod.json,neoforge.mods.toml, etc.) - Optional mixin and access widener / access transformer scaffolds
- Full Gradle wrapper (
gradlew,gradlew.bat, andgradle-wrapper.jar) and.gitignore
Download the latest release from Releases and install via Settings > Plugins > Install Plugin from Disk.
- File > New > Project
- Select "Prism Mod" from the list
- Configure project name and location
- Set mod ID, name, group ID, and license
- Add Minecraft versions with loader selections
- Click Create
| Mode | Description |
|---|---|
| Single Loader | One loader per version, no common/loader split |
| Multi Loader | Common code + multiple loaders per version |
| Shared Common | Cross-version pure Java code |
| Loader | Minecraft versions |
|---|---|
| Fabric | Any |
| NeoForge | 1.20.2+ |
| Forge | 1.17 - 1.20.1 |
| Legacy Forge | 1.7.10 - 1.12.2 |
MIT