Skip to content

Chew's fork of JDA-Applications/JDA-Utilities, with support for modern features such as Slash Commands, Context Menus, and more.

License

Notifications You must be signed in to change notification settings

Chew/JDA-Chewtils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9eef628 · Jun 29, 2021
May 20, 2018
Jun 29, 2021
Mar 23, 2020
Jun 17, 2019
Nov 4, 2020
Feb 13, 2020
Jun 8, 2021
May 28, 2021
Jan 16, 2018
Dec 29, 2017
Jan 16, 2018
Jan 16, 2018
Jun 1, 2021
Jun 6, 2021
Jan 16, 2018
Feb 13, 2020
Feb 13, 2020
May 28, 2021

Repository files navigation

JDA-Chewtils

JDA-Chewtils is a fork of JDA-Utilities which is a series of tools and utilities for use with JDA to assist in bot creation.

Support

If you're needing help or want to help, feel free to hop onto the #jda-chewtils channel on my server.

Please do NOT use the official JDA server for help with this fork.

Packages

Since JDA-Utilities 2.x, the library has been split into multiple modular projects, in order to better organize its contents based on what developers might want to use and not use.

Visit individual modules to read more about their contents!

Getting Started

You will need to add this project as a dependency (either from the latest .jar from the releases page, or via maven or gradle), as well as JDA.

With maven:

  <dependency>
    <groupId>pw.chew</groupId>
    <artifactId>jda-chewtils</artifactId>
    <version>JDA-CHEWTILS-VERSION</version>
    <scope>compile</scope>
    <type>pom</type>
  </dependency>
  <dependency>
    <groupId>net.dv8tion</groupId>
    <artifactId>JDA</artifactId>
    <version>JDA-VERSION</version>
  </dependency>
  <repository>
    <id>chew-m2</id>
    <url>https://m2.chew.pro/releases</url>
  </repository>

With gradle:

dependencies {
    compile 'pw.chew:jda-chewtils:JDA-UTILITIES-VERSION'
    compile 'net.dv8tion:JDA:JDA-VERSION'
}

repositories {
    jcenter()
    maven { url "https://m2.chew.pro/releases" }
}

Individual modules can be downloaded using the same structure shown above, with the addition of the module's name as a suffix to the dependency:

With maven:

  <dependency>
    <groupId>pw.chew</groupId>
    <!-- Notice that the dependency notation ends with "-command" -->
    <artifactId>jda-chewtils-command</artifactId>
    <version>JDA-CHEWTILS-VERSION</version>
    <scope>compile</scope>
  </dependency>

With gradle:

dependencies {
    // Notice that the dependency notation ends with "-command"
    compile 'pw.chew:jda-chewtils-command:JDA-CHEWTILS-VERSION'
}

Examples

Guides and information can be found on the wiki.

About

Chew's fork of JDA-Applications/JDA-Utilities, with support for modern features such as Slash Commands, Context Menus, and more.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%