A kotlin interface for JDA, providing extensions and convenience for kotlin based projects that want to interact with JDA
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'net.dv8tion:JDA:3.0.0_156'
compile 'com.github.JDA-Applications:Kotlin-JDA:master-SNAPSHOT'
}
Replace the JDA version if needed
Kotlin setup is up to you!
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.JDA-Applications</groupId>
<artifactId>Kotlin-JDA</artifactId>
<version>master-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>3.0.0_156</version>
</dependency>
</dependencies>
Replace the JDA version if needed
Kotlin setup is up to you!