Skip to content

Installation Guide

Traqueur edited this page Jul 25, 2024 · 3 revisions

Ensure CommandsAPI is included in your project. If you're using Maven or Gradle, add the corresponding dependency to your configuration file.

For Gradle

repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
    implementation 'com.github.Traqueur-dev:CommandsAPI:VERSION'
}

For Maven

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.github.Traqueur-dev</groupId>
        <artifactId>CommandsAPI</artifactId>
        <version>VERSION</version>
    </dependency>
</dependencies>

Be sure to relocate commandsAPI in to prevent bugs with other plugins.

Clone this wiki locally