A professional library for building customizable inventory GUIs on PaperMC and Minestom servers.
JGuiWrapper provides a unified API for creating and managing inventory-based GUIs across multiple Minecraft server platforms. It supports both standalone plugin deployment and direct embedding into your project.
Note: The Wiki is currently outdated. Refer to this document for accurate setup instructions.
| Platform | Version | Java |
|---|---|---|
| 1.16.5 – 1.21.11 | Java 16+ | |
| 2026.04.13-1.21.11+ | Java 25+ |
Add the JitPack repository to your build configuration.
Maven
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>Gradle (Kotlin DSL)
repositories {
maven("https://jitpack.io")
}JGuiWrapper offers two integration modes for Paper-based servers.
JGuiWrapper is installed as a separate plugin on the server. Your plugin references the API without shading.
Maven
<dependency>
<groupId>com.github.Jodexx.JGuiWrapper</groupId>
<artifactId>api</artifactId>
<version>v1.0.0.9</version>
<scope>provided</scope>
</dependency>Gradle (Kotlin DSL)
dependencies {
compileOnly("com.github.Jodexx.JGuiWrapper:api:v1.0.0.9")
}The library is shaded directly into your plugin jar. No separate JGuiWrapper plugin is required on the server.
Maven
<dependency>
<groupId>com.github.Jodexx.JGuiWrapper</groupId>
<artifactId>common</artifactId>
<version>v1.0.0.9</version>
</dependency>
<!-- Optional: NMS support for advanced title management -->
<dependency>
<groupId>com.github.Jodexx.JGuiWrapper</groupId>
<artifactId>nms</artifactId>
<version>v1.0.0.9</version>
</dependency>Gradle (Kotlin DSL)
dependencies {
implementation("com.github.Jodexx.JGuiWrapper:common:v1.0.0.9")
implementation("com.github.Jodexx.JGuiWrapper:nms:v1.0.0.9") // optional: NMS title support
}Warning
When using the embedded (common) module, you must manually register the library's listeners in your plugin's main class.
@Override
public void onEnable() {
PaperGuiApiImpl.init(this); // registers all required listeners
}Gradle (Kotlin DSL)
dependencies {
implementation("com.github.Jodexx.JGuiWrapper:minestom:v1.0.0.9")
}void main() {
MinestomGuiApi.init(MinecraftServer.process());
}| Module | Purpose | Deployment |
|---|---|---|
api |
Compile-time API for standalone plugin usage | Plugin on server |
common |
Full library for shaded embedding | Shaded into your jar |
nms |
NMS-based title management (optional) | Shaded alongside common |
minestom |
Full library for Minestom servers | Shaded into your jar |