Skip to content
Ryan Arrowsmith edited this page Oct 1, 2020 · 4 revisions

Hello

Welcome to the JDA-Command wiki!

JDA-Command is a light and fast annotation-driven command library that was originally intended for use alongside the Java Discord API by DV8FromTheWorld

Installation

Latest Stable Version:

1.1.5

Maven

<!--Repository for JDA-Command-->
<repository>
    <id>jitpack.io</id>
    <name>jitpack</name>
    <url>https://jitpack.io</url>
</repository>

<!--Dependency for JDA-Command-->
<dependency>
   <groupId>com.github.rainestormee</groupId>
   <artifactId>JDA-Command</artifactId>
   <version>x.y.z</version>
</dependency>

Gradle

repositories {
    //Make sure this repository is last.
    maven { url 'https://jitpack.io' }
}

dependencies {
    //JDA-Command dependency
    compile 'com.github.rainestormee:JDA-Command:x.y.z'
}
Clone this wiki locally