Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 2.55 KB

README.md

File metadata and controls

43 lines (28 loc) · 2.55 KB

adventure-platform-fabric

GitHub Workflow Status (branch) MIT License Maven Central Sonatype Nexus (Snapshots)

Integration between the adventure library and Minecraft: Java Edition using the Fabric modding system.

See the documentation for usage and dependency information for this project and the main adventure library.

Versions

adventure-platform-fabric tends to not work on more than one major version of Minecraft at a time. We test the following version combinations:

Minecraft Version adventure-platform-fabric version
1.16.x 4.0.0
1.17.x 4.1.0
1.18.1 5.1.0
1.18.2 5.3.1
1.19 5.4.0
1.19.1 / 1.19.2 5.5.2
1.19.3 5.7.0
1.19.4 5.8.0

Contributing

We appreciate contributions of any type. For any new features or typo-fix/style changes, please open an issue or come talk to us in our Discord first, so we make sure you're going in the right direction for the project.

All the adventure projects are built with Gradle and use a common checkstyle configuration. adventure-platform-fabric requires the same Java version that Minecraft itself does in the target version. Please make sure all tests pass, license headers are updated, and checkstyle passes to help us review your contribution.

An unfortunate quirk with Loom is that it resolves dependencies in the configuration phase, before any task execution can happen, so we have to run Gradle twice to generate templates (the first without the daemon, since loom caches some information), then apply our in-project interface injections. Sorry!

This looks like:

$ ./gradlew --no-daemon generateTemplates
$ ./gradlew build

To have browseable game source in your IDE, run ./gradlew genSources before importing the mod

adventure-platform-fabric is released under the terms of the MIT License.