A Create mod addon for pipes and physics. Built with Java and NeoForge 1.21.1.
- NeoForge 1.21.1 with Create 6.0.10 dependency
- Create Registrate — Create's registration system, pre-configured
- Ponder & Flywheel — Create's rendering and documentation libraries
- JEI — recipe viewer integration (optional, compile-only)
- Mixin support — pre-configured mixins
- GitHub Actions — automatic builds on push/PR
- Gradle 8.10 with configuration cache enabled
Click "Use this template" on GitHub, or clone and rename.
Edit gradle.properties:
mod_id=yourmod
mod_name=Your Mod Name
mod_version=0.1.0
mod_group_id=com.yourname.yourmod
mod_authors=YourName
mod_description=Your mod description.
mod_license=MIT- Rename
src/main/java/com/example/examplemod/to match yourmod_group_id - Update
ExampleMod.java— changeIDto yourmod_id - Rename
src/main/resources/examplemod.mixins.jsonto{mod_id}.mixins.json - Update the package path inside the mixins JSON
./gradlew build # Build the mod
./gradlew runClient # Launch Minecraft with your mod
./gradlew runServer # Launch a dedicated server
./gradlew runData # Run data generatorsThis template is provided under the MIT License. Your mod built from this template can use any license you choose.