Skip to content

Installation

virtualWinter edited this page Aug 30, 2025 · 3 revisions

Installation

This project is hosted on GitHub Packages. To use it, you need to add the repository to your pom.xml or build.gradle file.

Requirements

This library is built against Spigot 1.8.8. You must have this version or a compatible version in your project.

Maven

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>

Gradle

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")
}

Clone this wiki locally