Skip to content
/ Eclipse Public

A Paper plugin that adds fabric spongepowered mixins, and accesswideners

License

Notifications You must be signed in to change notification settings

Dueris/Eclipse

Repository files navigation

Eclipse

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:

  • Access Wideners
  • Fabric Mixins
  • Mixin Extras

Getting Started

To use Eclipse, include the following options in your paper-plugin.yaml (or .yml):

mixins: [
  "example.mixins.json"
]
wideners: [
  "eclipse.accesswidener"
]
datapack-entry: true

Configuration Fields

  • 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.

Installation

  1. Download Eclipse from modrinth.
  2. Place the Eclipse plugin jar in your servers plugins directory.
  3. Configure your plugins paper-plugin.yaml as shown above.

Examples

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"
    }

License

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.


About

A Paper plugin that adds fabric spongepowered mixins, and accesswideners

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published