{"id":22327248,"url":"https://github.com/cleanroommc/mixinbooter","last_synced_at":"2026-03-06T01:35:58.466Z","repository":{"id":43217857,"uuid":"309382217","full_name":"CleanroomMC/MixinBooter","owner":"CleanroomMC","description":"Allows any mixins that work on mods to work effortlessly. With a single class and an annotation. On 1.12.2.","archived":false,"fork":false,"pushed_at":"2025-03-25T14:20:35.000Z","size":389,"stargazers_count":61,"open_issues_count":2,"forks_count":20,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-31T13:18:40.293Z","etag":null,"topics":["api","hook","library","minecraft","mixin"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CleanroomMC.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-11-02T13:43:12.000Z","updated_at":"2025-03-25T14:20:34.000Z","dependencies_parsed_at":"2023-10-03T01:17:44.920Z","dependency_job_id":"f0fb847d-5ce5-44cf-bb0e-0be77c3c63f6","html_url":"https://github.com/CleanroomMC/MixinBooter","commit_stats":{"total_commits":135,"total_committers":6,"mean_commits":22.5,"dds":"0.051851851851851816","last_synced_commit":"b650f35e75b522f3bfaaaa9548685cae8f2a02df"},"previous_names":["cleanroommc/mixinbooter","lolikingdom/mixinbooter"],"tags_count":34,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CleanroomMC%2FMixinBooter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CleanroomMC%2FMixinBooter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CleanroomMC%2FMixinBooter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CleanroomMC%2FMixinBooter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CleanroomMC","download_url":"https://codeload.github.com/CleanroomMC/MixinBooter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247666014,"owners_count":20975788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","hook","library","minecraft","mixin"],"created_at":"2024-12-04T03:08:55.918Z","updated_at":"2026-03-06T01:35:58.454Z","avatar_url":"https://github.com/CleanroomMC.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MixinBooter\n### Allows any mixins that work on mods to work effortlessly on 1.8 - 1.12.2\n\n- Current Mixin Version: [UniMix 0.15.3 forked by CleanroomMC, derived from 0.8.7 branch by LegacyModdingMC](https://github.com/CleanroomMC/UniMix)\n\n- Current MixinExtra Version: [0.5.0](https://github.com/LlamaLad7/MixinExtras)\n\n### Pseudo-Changelog:\n\n- As of 4.2, MixinBooter's API has changed and ***all mods*** that uses mixins are encouraged to depend on MixinBooter, even those that mixin into vanilla/forge/library classes. To avoid mixin version mismatches with mods crashing trying to implement modded mixins (looking at you VanillaFix). Thanks to [@embeddedt](https://github.com/embeddedt) recommending and helping me introduce this change!\n\n- As of 5.0, [MixinExtras by @LlamaLad7](https://github.com/LlamaLad7/MixinExtras) is shaded. Available for developers to use.\n\n- As of 8.0, MixinBooter will now work from 1.8 - 1.12.2. One single build works with all these versions! (TODO: LiteLoader support?)\n\n- As of 8.4, MixinBooter actively attempts to be compatible with [SpongeForge](https://github.com/SpongePowered/SpongeForge)\n\n- As of 9.2, MixinBooter reinstates the older MixinLoader annotation for 1.8.x usages.\n\n- As of 10.0, MixinBooter follows Mixin 0.8.7\n\n### For Developers ~ Getting Started:\n\n1. Add CleanroomMC's repository and depend on MixinBooter's maven entry:\n\n```groovy\nrepositories {\n    maven {\n        url 'https://maven.cleanroommc.com'\n    }\n}\n\ndependencies {\n\n    // Common:\n    annotationProcessor 'org.ow2.asm:asm-debug-all:5.2'\n    annotationProcessor 'com.google.guava:guava:32.1.2-jre'\n    annotationProcessor 'com.google.code.gson:gson:2.8.9'\n\n    // ForgeGradle:\n    implementation ('zone.rong:mixinbooter:10.7') {\n        transitive = false\n    }\n    annotationProcessor ('zone.rong:mixinbooter:10.7') {\n        transitive = false\n    }\n    \n    // RetroFuturaGradle:\n    String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.7')\n    // modUtils.enableMixins('zone.rong:mixinbooter:10.7', 'mod_id.mixins.refmap.json') \u003c\u003c add refmap name as 2nd arg (optional)\n    api (mixinBooter) {\n        transitive = false\n    }\n    annotationProcessor (mixinBooter) {\n        transitive = false\n    }\n}\n\n```\n\n2. Pick your path:\n\n- Mixin into minecraft, forge or coremods? Make a *coremod* with `IFMLLoadingPlugin` and implement the class with `IEarlyMixinLoader`\n-  Mixin into normal mods? Make a normal class anywhere in your mod file, implement the class with `ILateMixinLoader`\n\n3. Register your mixin configs\n- In either your `IEarlyMixinLoader` or `ILateMixinLoader` you have to return a list of mixin config names via the `getMixinConfigs` method\n- This is the path (relative to your `resources` root) to your mixin config.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcleanroommc%2Fmixinbooter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcleanroommc%2Fmixinbooter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcleanroommc%2Fmixinbooter/lists"}