A simple template based off of SizableShrimp's modified Forge MDK Template that I use to create new projects quicker by extracting all mod-related info to gradle.properties
.
Included are both Forge and Fabric Templates
- Open up
gradle.properties
and change all the necessary properties - Rename the main package to be the same as
${mod_base_package}.${mod_id}
, e.g.me.soapsuds.examplemod
- Delete
build.gradle
- Rename
mixinbuild.gradle
tobuild.gradle
- Rename
examplemod.mixins.json
to start with your mod id - Add mixins under the
mixin
package inside your base package, e.g.me.soapsuds.examplemod.mixin
- Delete
mixinbuild.gradle
- Delete
src/main/resources/examplemod.mixins.json
- Remove
mixin_version
fromgradle.properties
Finally, import into your IDE of choice.