Discord JDA Utilities to build your own Discord bot
With this library you can easily create your discord bots with Java. This library is based on the JDA.
- Command System
- Logging System with file logs
- File-based database system
- Menu-API
A Java project with minimum java 8. This library has already compiled stuff like the jda, jline and gson.
Add the repository and dependency to your plugin:
Maven
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.GlaubeKeinemDev</groupId>
<artifactId>JDA-Utilities</artifactId>
<version>1.0-FINAL-RELEASE</version>
<scope>compile</scope>
</dependency>
Gradle
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.GlaubeKeinemDev:JDA-Utilities:1.0-FINAL-RELEASE'
}
Now you're done! You can start by creating an instance of the DiscordBot.
More information how to use the library Wiki.