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> <!--(1)!-->
<classifier>remapped-mojang</classifier> <!--(2)!-->
<version>VERSION</version>
</dependency>
- You can find a list of inventory-access revisions and which Minecraft version they map to here.
- You can also add the
remapped-mojang
classifier to get InvUI working on mojang-mapped servers.
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.