CurseForge · Minecraft mod
UniMixins
A Mixin loader designed for maximum compatibility.
This page is having a moment, so a few details may be a little behind.
Quick answer
Which UniMixins release should I use?
UniMixins 0.3.1 targets 1.7.10 with Forge. The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server. No extra mods listed for this file.
Where it goes
Is UniMixins required on the client, server, or both?
The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.
The source does not explicitly classify this release as client-only or server-only.
What else does UniMixins 0.3.1 need?
UniMixins 0.3.1. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add UniMixins without breaking your instance.
Built for UniMixins 0.3.1. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use UniMixins 0.3.1. It targets 1.7.10 with Forge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.
- 04
Pick the file you checked
Use the “Get this file” button beside UniMixins 0.3.1. It opens that exact file at the source.
About this project
What does UniMixins add?
UniMixins is a Mixin loader for Minecraft 1.7.10 (with partial 1.8.9~1.12.2 support) designed for maximum compatibility. It aims to combine the features of as many mixin loaders as possible, and its modular nature makes it possible to use along other loaders if desired.
Background
Numerous Mixin loaders exist for 1.7.10, and each one provides a differing set of extra features we refer to as "extras" on top of providing Mixin.
Since each of these loaders is monolithic, different ones cannot be used at the same time due to unavoidable feature overlap. To avoid this problem, UniMixins offers each feature as a separate module (but a combined jar is still provided for convenience).
Comparison table
Below is a table comparing the feature sets of known Mixin loaders.
Note: A more detailed version of this table is available here.

- [NOP]: Does not do anything. (issue)
- [SEP]: Is available as a separate mod.
Usage
Download the -all jar, and put it in your mods directory. Remove any other conflicting Mixin loaders (refer to the above table).
Note: It's important for the jar to be named so that it comes first alphabetically, to avoid a sorting issue with mods that embed Mixin. This is why the jar starts with a + character. You may need to change this to a ! character if you encounter issues with renamed jars.
For reference, here is the sorting order of some notable characters: ! < + < 0 < [ < _ < a
Advanced usage
You can also assemble your own combination of modules using the module jars. Some modules depend on other modules, see the List of modules section.
Assuming no other Mixin loaders are present, you will generally want the following modules:
- Mixin (any single fork)
- Compat and Mixingasm (optional but highly recommended)
- Modules providing any extras you need
The game will crash if modules are missing dependencies. This can be disabled in the config.
List of modules
All modules depend on the Mixin module. Note that the dependents don't necessarily have to come from UniMixins modules, other mods may also be used to provide them.
Included in all-jar
- Mixin (UniMix): Provides a Mixin fork maintained by the UniMixins developers, based on the Fabric fork.
- SpongeMixins [1.7.10 only]: Provides an emulation of SpongeMixins's extras.
- MixinBooterLegacy [1.7.10 only]: Provides an emulation of MixinBooterLegacy's extras, and a relocated MixinExtras.
- MixinExtras: Provides MixinExtras.
- GasStation [1.7.10 only]: Provides an emulation of GasStation's extras. (Depends on: SpongeMixins, MixinBooterLegacy, and MixinExtras)
- GTNHMixins [1.7.10 only]: Provides an emulation of GTNHMixins's extras, and a relocated MixinExtras. (Depends on: SpongeMixins)
- Compat: Various compatibility tweaks: Remaps invalid references to Mixin classes (specifically the shaded ASM) in mods; Adds information about mixins to crash reports. [1.7.10 only]
- Mixingasm: Improves Mixin's compatibility with ASM transformers.
Optional
- Future Compat [1.8.9+ only]: Makes many of the modules usable on 1.8.9+. Needed to run the mod on 1.8+. (Not needed for Mixingasm.)
Very Optional
These are not included in releases, they mainly exist for testing purposes. (Note: You can only use a single Mixin module at the same time.)
- Mixin (SpongePowered): Provides the upstream fork of Mixin.
- Mixin (Fabric): Provides the Fabric fork of Mixin.
- Mixin (GasMix): Provides the GasStation fork of Mixin.
- Mixin (GTNH): Provides the GTNH fork of Mixin.
FAQ
Why another mixin loader? Haven't you seen that one xkcd strip?
Before UniMixins was created, there was far too much fragmentation among Mixin loaders on 1.7.10, with different mods requiring different incompatible loaders. This was partly due to conflicts between their developers, and partly because of technical reasons (the loaders were designed in a monolithic way, which invites incompatibility). This project has neither of those issues. 
Why are you using the Fabric fork of Mixin? Isn't this a Forge mod?
The Fabric fork of Mixin is more actively maintained than the upstream fork, and has some extra fixes. Most of the Fabric fork's changes are not Fabric-specific.
What do the "extras" do anyway?
- SpongeMixins, Grimoire, MixinBooterLegacy, GasStation and GTNHMixins offer various ways to let you mix into the classes of non-coremods. (This is something Mixin does not natively support, since all of its phases occur before Forge discovers non-coremods and puts them on the classpath.)
- MixinBooterLegacy, GasStation and GTNHMixins add a "late" mixin phase that is fired right before the first mod construction event is dispatched. At this point all mods have been discovered.
- SpongeMixins lets you manually add mods to the classpath early using their file names. An old, hacky solution.
- We recommend new mods to use GTNHMixins as it's the most actively used and maintained option.
- Mixingasm fixes a Mixin issue that breaks some ASM transformers due to Mixin altering how they are called.
- MixinExtras adds new Mixin features that allow mods to write less intrusive mixins.
Mixin? mixin? SpongeMixins? SpongePowered? What's the difference?
- Mixin: a Java library that lets you transform Java classes in a fluent way.
- SpongePowered: the organization that created Mixin (who also developed a modding API called Sponge).
- mixin: a special Java class defining a "change" that should be applied to a class. These get applied by Mixin.
- SpongeMixins: a Mixin loader created by TimeConqueror that has a very generic name.
License
UniMixins is licensed under the Unlicense, with the exception of some modules. See LICENSE for the full details.
Project description from CurseForge.
Pick your setup
UniMixins by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
UniMixins versions and loaders
UniMixins 0.3.1
+unimixins-all-1.7.10-0.3.1.jar
27 May 2026
UniMixins 0.3.0
+unimixins-all-1.7.10-0.3.0.jar
22 Apr 2026
UniMixins 0.2.1
+unimixins-all-1.7.10-0.2.1.jar
11 Jan 2026
UniMixins 0.2.0
+unimixins-all-1.7.10-0.2.0.jar
11 Jan 2026
UniMixins 0.1.23
+unimixins-all-1.7.10-0.1.23.jar
1 Sept 2025
UniMixins 0.1.22
+unimixins-all-1.7.10-0.1.22.jar
12 Jul 2025
UniMixins 0.1.21
+unimixins-all-1.7.10-0.1.21.jar
12 Jul 2025
UniMixins 0.1.20
+unimixins-all-1.7.10-0.1.20.jar
2 Mar 2025
UniMixins 0.1.19
+unimixins-all-1.7.10-0.1.19.jar
29 Oct 2024
UniMixins 0.1.18
+unimixins-all-1.7.10-0.1.18.jar
17 Oct 2024
UniMixins 01.18
+unimixins-all-1.7.10-01.18.jar
17 Oct 2024
UniMixins 0.1.17
+unimixins-all-1.7.10-0.1.17.jar
19 Mar 2024
Looking for an older file? The official CurseForge project page is in Resources.