-
Notifications
You must be signed in to change notification settings - Fork 14
/
Dependencies.kt
16 lines (14 loc) · 1.01 KB
/
Dependencies.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@file:Suppress("SpellCheckingInspection")
const val coroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-core:${Version.COROUTINES}"
const val serialization = "org.jetbrains.kotlinx:kotlinx-serialization-json:${Version.SERIALIZATION}"
const val slf4j = "org.slf4j:slf4j-simple:${Version.SLF4J}"
const val exposed = "org.jetbrains.exposed:exposed-core:${Version.EXPOSED}"
const val exposedJdbc = "org.jetbrains.exposed:exposed-jdbc:${Version.EXPOSED}"
const val databaseDriver = "org.postgresql:postgresql:${Version.POSTGRESQL}"
const val tgBotApi = "dev.inmo:tgbotapi:${Version.TG_BOT_API}"
const val ktorCore = "io.ktor:ktor-client-core:${Version.KTOR}"
const val ktorCio = "io.ktor:ktor-client-cio:${Version.KTOR}"
const val ktorContentNegotiation = "io.ktor:ktor-client-content-negotiation:${Version.KTOR}"
const val ktorSerializationJson = "io.ktor:ktor-serialization-kotlinx-json:${Version.KTOR}"
const val aqueue = "me.y9san9.aqueue:core:${Version.AQUEUE}"
const val h2Database = "com.h2database:h2:${Version.H2DATABASE}"