ModFusioner is a gradle plugin that allow you to merge multiple mod jars into a single jar. It's intended to be used by multi-loader projects created with Architectury, MultiLoader Template or unimined.
This plugin is based on, and contains code from [Forgix](https://github.com/PacifistMC/Forgix), but with massive optimizations, additional features and bug fixes.
***
### Usage
To use this plugin inside your project, first you have to add our maven.
To does this, open up settings.gradle and add the following:
// For "custom", the "projectName" is a required value.
custom {
projectName = "sponge" // This is the name of the project. This is a required field.
inputTaskName = "jar" // The name of the build task for the forge project
// OR
// inputFile = "sponge/build/libs/MyMod-Sponge-1.0.jar" // Use a custom jar input
additionalRelocate "org.my.lib" "sponge.org.my.lib" // This is an important one to know. This is how you can remap additional packages such as libraries and stuff.