Skip to content
Kaktushose edited this page Jan 23, 2022 · 2 revisions

Prerequisites

In order to use this framework you will need the following things up and running:

  1. Java 8+
  2. JDA 4.4.x
  3. SLF4J Implementation not mandatory but recommended

Add the framework to your project

You can download the latest version here.

Maven

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
<dependency>
    <groupId>com.github.Kaktushose</groupId>
    <artifactId>jda-commands</artifactId>
    <version>VERSION</version>
</dependency>

Gradle

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
dependencies {
    implementation 'com.github.Kaktushose:jda-commands:VERSION'
}

Important

This wiki is the documentation for V3 (text commands)! If you're using V4 (interactions) please refer to the new documentation

Home

Getting Started

Writing Commands

Advanced Configuration

Util

Clone this wiki locally