JDA Commands is an extension for JDA to make commands easier and clearer to develop.
With the API you can easily create commands for the JDA and clearly divide them into different classes. Slash and custom commands are also supported.
If you have questions or problems regarding the JDA Commands API, you can create an issue or use the discussion.
The following things are required to use JDA Commands:
- Java 8+
- JDA v5.0.0-alpha.20
How you can use the API is written in our wiki. Here you will only be briefly shown how to implement the API in Maven and Gradle.
Add the following to your pom.xml
:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.Dominik48N</groupId>
<artifactId>jda-commands</artifactId>
<version>1.0.2</version>
</dependency>
</dependencies>
Add the following to your build.gradle
:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.Dominik48N:jda-commands:1.0.2'
}
This repository is licensed with the Apache License 2.0.