
JDA Library
JDA Library
This modification serves as a fundamental library for Minecraft mod developers that significantly simplifies integration of JDA (Java Discord API) into your projects. No longer do you need to resort to complicated techniques like JarInJar for connecting the Discord library.
Quick Start
To get started, simply copy the mod file into your project's mods folder. Then add the following lines to your build script:
repositories {
maven {
url = 'https://maven.minecraftforge.net/'
}
}
dependencies {
implementation("org.mangorage:JDA-Library:version")
}
Capabilities
After configuration, you immediately gain access to all JDA functions in your developments. This library is specifically designed to simplify working with Discord API in the context of Minecraft modifications.
Features
- Automatic JDA setup
- Comfortable integration with Minecraft Forge
- Support for modern Minecraft versions
- Optimized for use in modifications
The mod doesn't provide gameplay functions on its own and is intended exclusively for use by developers as a building block for more complex projects.
Remember that for this library to function properly, it must be present in the mods folder when launching the game.