puzzle-pieceAdding JDS to your project

Everything you need to know to use JDS

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

circle-exclamation

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

chevron-rightGradle Kotlinhashtag
// 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)")
chevron-rightGradle Groovyhashtag
// 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)"
chevron-rightMavenhashtag
<!-- 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