A clean and highly-effective Java Wrapper for the Discord API
Get Started
JDA is distributed through MavenCentral, allowing you an easy inclusion into your Java project by the dependency manager of your choice.
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>VERSION</version>
</dependency>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>VERSION</version>
<exclusions>
<exclusion>
<groupId>club.minnced</groupId>
<artifactId>opus-java</artifactId>
</exclusion>
</exclusions>
</dependency>
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:VERSION")
}
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:VERSION") {
exclude module: 'opus-java'
}
}