blob: fbe562396cc9fd62945ae9e0e398a034c3173e2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
plugins {
kotlin("jvm")
application
}
group = "com.romangraef"
version = "1.0-SNAPSHOT"
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("com.beust", "jcommander", "_")
implementation("net.dv8tion", "JDA", "_")
implementation("org.reflections", "reflections", "_")
runtimeOnly("org.slf4j", "slf4j-simple", "_")
}
application {
mainClassName = "com.romangraef.jdacommander.StartKt"
}
|