Kelp is a discord dependency used by craft together to allow all the plugins which we develop to only require the use of a single discord JDA instance, this not only saves bandwidth but also efficiency, only one websocket needs to be maintained instead of having each plugin having its own discord bot for its discord features.
Kelp is deprecated, please use CraftCore
You can download the Kelp plugin from the releases
Replace VERSION
with the latest version
repositories {
mavenCentral()
maven {
'https://repo.polarian.dev/repo'
}
}
dependencies {
compileOnly 'xyz.crafttogether:Kelp:VERSION'
compileOnly ('net.dv8tion:JDA:5.0.0-alpha.4') {
exclude module: 'opus-java'
}
}
<repositories>
<repository>
<id>polarian-repo</id>
<url>https://repo.polarian.dev/repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>xyz.crafttogether</groupId>
<artifactId>Kelp</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
</dependencies>