Core
Kord core
is an implementation of the Discord api build on top of the gateway, rest and cache modules. It features a high level representation of Discord's entities and their behaviour in a non-blocking, coroutine focused, event-driven design.
repositories {
mavenCentral()
// Kord Snapshots Repository (Optional):
maven("https://oss.sonatype.org/content/repositories/snapshots")
}
dependencies {
implementation("dev.kord:kord-core:0.14.0")
}
repositories {
mavenCentral()
// Kord Snapshots Repository (Optional):
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
dependencies {
implementation("dev.kord:kord-core:0.14.0")
}
<dependency>
<groupId>dev.kord</groupId>
<artifactId>kord-core</artifactId>
<version>0.14.0</version>
</dependency>
Kord Snapshot Repository (Optional)
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
What's next
Last modified: 08 April 2023