Tags
Creators
Details
Licensed LGPL-2.1-only
Published 3 years ago
Updated yesterday
All versions
11.0
Beta
MixinBooter 11.0last month 13.4K
Compatibility
Minecraft: Java Edition
1.12.x
1.11.x
1.10.x
1.9.x
1.8.x
Platform
Forge
Supported environments
Client and server
Changes
Added
- Allowing traditional
MixinConfigs&MixinConnectorway of registering mixins once again - Suppression of "corrupt zip" warnings from Forge when reading mods and parsing data
- Mod discovery (properly done). Accessible via
ModDiscoverer - Way to resolve mod ids in a more correct and explicit manner
- Dedicated mixin logging output:
/logs/mixinbooter.log - Configuration for various mixin flags and audit file
- Class-loading now traceable, helps with certain mixins trying to mixin classes that are loaded too early, good way to debug this issue
- Better testing within the workspace
- Warnings of mods shading mixins into their own jar file
- Documentation
Changed
- CleanMix! Bridged the gap, CleanMix will be used in Cleanroom (as it updates soon tm)
- Deprecated early/mixin loading stages, division is no longer present
- Deprecated loader, hijacker interfaces
- Included annotation processor dependencies for maven artifact
- Better "mod is present" checks
- Phasing out mixin "phases", configs gets immediately selected and processed
Removed
- Explicit mod fixes
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:G1ckZuWK:zFKmLcII"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:G1ckZuWK:zFKmLcII"
}

