How to add a dependency to Maven
Add the following net.dv8tion : JDA maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>1.2.2_139</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following net.dv8tion : JDA gradle dependency to your build.gradle
file:
implementation 'net.dv8tion:JDA:1.2.2_139'
Gradle Kotlin DSL: Add the following net.dv8tion : JDA gradle kotlin dependency to your build.gradle.kts
file:
implementation("net.dv8tion:JDA:1.2.2_139")
How to add a dependency to SBT Scala
SBT Scala: Add the following net.dv8tion : JDA sbt scala dependency to your build.sbt
file:
libraryDependencies += "net.dv8tion" % "JDA" % "1.2.2_139"