Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

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

License

NotificationsYou must be signed in to change notification settings

Chew/JDA-Chewtils

 
 

Repository files navigation

JDA-Chewtils is a modern and updated fork ofJDA-Utilities which is a series of tools and utilities for use withJDA 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 (via Maven or Gradle), as well asJDA.

Keep in mind the 1.x version of JDA-Chewtils is only compatible with JDA 4, for compatibility with JDA 5, you need 2.x. Seethe wiki for more information.

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>
<!-- Chew's Maven Repo for JDA-Chewtils-->  <repository>    <id>chew</id>    <name>m2-chew</name>    <url>https://m2.chew.pro/releases</url>  </repository><!-- JDA repo to get JDA-->  <repository>    <id>dv8tion</id>    <name>m2-dv8tion</name>    <url>https://m2.dv8tion.net/releases</url>  </repository>

With Gradle:

dependencies {    implementation'pw.chew:jda-chewtils:JDA-UTILITIES-VERSION'    implementation'net.dv8tion:JDA:JDA-VERSION'}repositories {    mavenCentral()// for transitive dependencies// for JDA 4    maven {      name'm2-dv8tion'      url'https://m2.dv8tion.net/releases'    }// For JDA-Chewtils    maven { url"https://m2.chew.pro/releases" }}

Gradle (Kotlin):

dependencies {    implementation("pw.chew:jda-chewtils:JDA-UTILITIES-VERSION")    implementation("net.dv8tion:JDA:JDA-VERSION")}repositories {    mavenCentral()// for transitive dependencies// for JDA 4    maven {      name="m2-dv8tion"      url= uri("https://m2.dv8tion.net/releases")    }// For JDA-Chewtils    maven { url= uri("https://m2.chew.pro/releases") }}

Individual modules can be downloaded using the same structure shown above, with the addition of the module'sname 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"    implementaton'pw.chew:jda-chewtils-command:JDA-CHEWTILS-VERSION'}

Examples

Guides and information can be found on thewiki.

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

Sponsor this project

 

Packages

No packages published

Languages

  • Java100.0%

[8]ページ先頭

©2009-2025 Movatter.jp