-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
virtualWinter edited this page Aug 30, 2025
·
3 revisions
This project is hosted on GitHub Packages. To use it, you need to add the repository to your pom.xml or build.gradle file.
This library is built against Spigot 1.8.8. You must have this version or a compatible version in your project.
Add the following repository to your pom.xml:
<repositories>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/CatMC-Network/menu</url>
</repository>
</repositories>Then, add the dependency:
<dependencies>
<dependency>
<groupId>club.catmc.utils</groupId>
<artifactId>menu</artifactId>
<version>0.3</version>
</dependency>
</dependencies>Add the following to your build.gradle file:
Groovy DSL:
repositories {
maven {
url = uri("https://maven.pkg.github.com/CatMC-Network/menu")
}
}
dependencies {
implementation 'club.catmc.utils:menu:0.3'
}Kotlin DSL:
repositories {
maven {
url = uri("https://maven.pkg.github.com/CatMC-Network/menu")
}
}
dependencies {
implementation("club.catmc.utils:menu:0.3")
}© 2025 CatMC Network. This project is licensed under the ISC License.