-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
42 lines (34 loc) · 1.02 KB
/
build.gradle.kts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
plugins {
kotlin("jvm") version "1.7.21"
application
}
repositories {
mavenCentral()
}
val ktorVersion = "1.6.8"
val exposedVersion = "0.41.1"
dependencies {
// Discord
implementation("com.discord4j:discord4j-core:3.0.14")
// Milton
implementation("com.github.ajalt:clikt:2.7.1")
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
implementation("io.ktor:ktor-client-gson:$ktorVersion")
implementation("io.ktor:ktor-client-json:$ktorVersion")
// Lisp
implementation("org.gabe.coffee:coffeelisp:1.0") {
version {
branch = "master"
}
}
// Database
implementation("org.jetbrains.exposed", "exposed-core", exposedVersion)
implementation("org.jetbrains.exposed", "exposed-jdbc", exposedVersion)
implementation("org.xerial:sqlite-jdbc:3.32.3.2")
// Testing
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
}
application {
mainClassName = "coffeebot.MainKt"
}