Skip to content

InvUI

Configuring Maven / Gradle

To use InvUI, you first have to add the xenondevs maven repository to your build configuration.

<repository>
    <id>xenondevs</id>
    <url>https://repo.xenondevs.xyz/releases</url>
</repository>
maven {
    url 'https://repo.xenondevs.xyz/releases'
}
maven {
    url = uri("https://repo.xenondevs.xyz/releases")
}

Now you can add InvUI as to your build configuration:

<dependency>
    <groupId>de.studiocode.invui</groupId>
    <artifactId>InvUI</artifactId>
    <version>VERSION</version>
</dependency>
implementation "de.studiocode.invui:InvUI:VERSION"
implementation("de.studiocode.invui:InvUI:VERSION")