Skip to content

Setup

Prerequisites

Configuration

JDA-Commands is distributed through Maven Central. Alternatively you can download the latest version here.

pom.xml
<dependency>
   <groupId>io.github.kaktushose</groupId>
   <artifactId>jda-commands</artifactId>
   <version>4.0.0-beta.4</version>
</dependency>
build.gradle.kts
repositories {
   mavenCentral()
}
dependencies {
   implementation("io.github.kaktushose:jda-commands:4.0.0-beta.4")
}
build.gradle
repositories {
   mavenCentral()
}
dependencies {
   implementation 'io.github.kaktushose:jda-commands:4.0.0-beta.4"'
}

IntelliJ Plugin

We also provide an IntelliJ Plugin that performs some Code Inspection. It validates method references, which are commonly used in jda-commands. You can find it here.

Plugin Example