-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
39 lines (31 loc) · 1.13 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
plugins {
kotlin("jvm") version "2.0.20"
id("com.github.johnrengelman.shadow") version "8.1.1"
application
}
group = "com.helltar"
version = "0.8.3"
repositories {
mavenCentral()
}
object Versions {
const val EXPOSED = "0.52.0"
}
dependencies {
implementation("com.annimon:tgbots-module:7.10.0") {
exclude("org.telegram", "telegrambots-webhook")
}
implementation("com.github.twitch4j:twitch4j:1.22.0")
implementation("io.github.cdimascio:dotenv-kotlin:6.4.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.8.1")
implementation("org.postgresql:postgresql:42.6.0")
implementation("org.jetbrains.exposed:exposed-core:${Versions.EXPOSED}")
implementation("org.jetbrains.exposed:exposed-dao:${Versions.EXPOSED}")
implementation("org.jetbrains.exposed:exposed-java-time:${Versions.EXPOSED}")
implementation("org.jetbrains.exposed:exposed-jdbc:${Versions.EXPOSED}")
implementation("org.slf4j:slf4j-api:2.0.13")
implementation("ch.qos.logback:logback-classic:1.5.6")
}
application {
mainClass.set("com.helltar.twitchviewerbot.bot.TwitchViewerBot")
}