A MIXIN Plugin Library for Paper servers
Eclipse is a Paper plugin that introduces SpongePowered/Fabric Mixin to the Paper server environment. This project implements a modified version of the Ignite Mixin Launcher, modified to be more flexible and agnostic in terms of the Minecraft version(allowing it to function on numerous versions with little issues) and built specifically for the Eclipse environment.
Eclipse includes a large array of features:
To use Eclipse, include the following options in your paper-plugin.yaml (or .yml):
mixins: [
"example.mixins.json"
]
wideners: [
"eclipse.accesswidener"
]
datapack-entry: true
mixins: Defines the Mixin configuration files your plugin will use
Example:
{
"mixins": [
"ExampleMixin"
],
"package": "me.dueris.example.mixin",
"compatibilityLevel": "JAVA_21"
}
wideners: Specifies the access wideners.
datapack-entry: Allows Eclipse to also load your plugin as a vanilla datapack, similar to a fabric mod.
plugins directory.paper-plugin.yaml as shown above.For a plugin named ExamplePlugin:
paper-plugin.yaml
name: ExamplePlugin
main: me.dueris.example.Main
version: 1.0.0
mixins: [
"eclipse.mixins.json"
]
wideners: [
"eclipse.accesswidener"
]
datapack-entry: true
eclipse.mixins.json
{
"mixins": [
"ExampleMixin"
],
"package": "me.dueris.example.mixin",
"compatibilityLevel": "JAVA_21"
}
This project is licensed under GPL-3.0 with an additional permission clause:
Redistribution and use in binary form are allowed, provided that explicit permission is obtained from the author for direct integration into third-party projects.
See the LICENSE file for more details.