InvUI
Configuring Maven / Gradle
Minimum required Java version: 11
To use InvUI, you first have to add the xenondevs maven repository to your build configuration.
Now you can add InvUI as a dependency:
(optional) Manually choosing inventory-access revisions
InvUI uses inventory-access
for multi-version support. If you depend on the invui
module, you'll automatically get all available inventory-access
revisions.
If your plugin does not have multi-version support or you only need versions, you can either exclude the related inventory-access
revisions or instead depend on the invui-core
module which does not have any transitive dependencies on any inventory-access
revisions.
<dependency>
<groupId>xyz.xenondevs.invui</groupId>
<artifactId>invui-core</artifactId>
<version>VERSION</version>
</dependency>
<dependency>
<groupId>xyz.xenondevs.invui</groupId>
<artifactId>inventory-access-r13</artifactId>
<classifier>remapped-mojang</classifier>
<version>VERSION</version>
</dependency>
If you're using Kotlin, you should also add the invui-kotlin
module:
To find the latest InvUI version, you can explore the Maven Repository or check out the GitHub Releases Page.