Adding JDS to your project

Everything you need to know to use JDS

As previously mentioned, JDS requires both JDA and JSky in order to work. Here is how you can add all three dependencies to your project in order to start using JDS.

Once you have added the repository, you can add JDS and all dependencies to your project. Keep in mind that JDA has its own guide to add it to your project, wich can be found here.

Gradle Kotlin
// Replace (version) with the version you want to use.

// JDA has its own documentation, but here is an example
implementation("net.dv8tion.JDA:(version)")
// JSky (Base only)
implementation("net.codersky.jsky:base:(version)")
// JDS
implementation("net.codersky:jds:(version)")
Gradle Groovy
// Replace (version) with the version you want to use.

// JDA has its own documentation, but here is an example
implementation "net.dv8tion.JDA:(version)"
// JSky (Base only)
implementation "net.codersky.jsky:base:(version)"
// JDS
implementation "net.codersky:jds:(version)"
Maven
<!-- Replace (version) with any version you want to use. -->

<!-- JDA has its own documentation, but here is an example -->
<dependency>
    <groupId>net.dv8tion</groupId>
    <artifactId>JDA</artifactId>
    <version>(version)</version>
</dependency>

<!-- JSky (Base only) -->
<dependency>
  <groupId>net.codersky.jsky</groupId>
  <artifactId>base</artifactId>
  <version>(version)</version>
</dependency>

<!-- JDS -->
<dependency>
  <groupId>net.codersky</groupId>
  <artifactId>jds</artifactId>
  <version>(version)</version>
</dependency>

Last updated

Was this helpful?