11# Koncorda
22
3- ![ Bintray ] ( https://img.shields.io/bintray /v/yttrian/koncorda/koncorda?label= koncorda )
4- ![ Bintray (latest) ] ( https://img.shields.io/bintray/dt /yttrian/koncorda/koncorda )
3+ ![ GitHub release (latest by date) ] ( https://img.shields.io/github /v/release/ yttrian/koncorda )
4+ ![ GitHub Sponsors ] ( https://img.shields.io/github/sponsors /yttrian )
55
66A small DSL for quickly creating a command bot with [ JDA] ( https://github.com/DV8FromTheWorld/JDA ) .
77Inspired by the simplicity [ Ktor] ( https://github.com/ktorio/ktor ) .
88
99# Installation
1010
11- Add the JCenter repository, the latest Koncorda release, JDA, and an SLF4J implementation to your ` build.gradle.kts ` .
11+ Add the Maven Central, Jitpack and dv8tion repositories, the latest Koncorda release, JDA, and an SLF4J implementation
12+ to your ` build.gradle.kts ` .
1213
1314While Koncorda is intended to be somewhat opinionated, you are free to chose your SLF4J implementation.
1415Logback is recommended for the sole reason that it's what the Ktor project generator suggests.
@@ -18,15 +19,18 @@ without needing Koncorda to be updated as well. As well as being able to chose t
1819
1920``` kotlin
2021repositories {
21- jcenter()
22+ mavenCentral()
23+ maven(" https://m2.dv8tion.net/releases" )
24+ maven(" https://jitpack.io" )
2225}
23-
26+ ```
27+ ``` kotlin
2428dependencies {
2529 implementation(" ch.qos.logback:logback-classic:1.2.3" )
26- implementation(" net.dv8tion:JDA:4.2.0_227 " ) {
30+ implementation(" net.dv8tion:JDA:4.2.1_253 " ) {
2731 exclude(module = " opus-java" ) // optional, for if you don't plan to use voice chat
2832 }
29- implementation(" org.yttr :koncorda:0.2.3 " )
33+ implementation(" com.github.yttrian :koncorda:0.3.0 " )
3034}
3135```
3236
0 commit comments