Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

craft-together/Kelp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



[DEPRECATED] Kelp (Discord Dependency)

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

Download

You can download the Kelp plugin from the releases

Developers

Gradle:

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'
    }
}

Maven:

<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>