-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (26 loc) · 1.11 KB
/
build.gradle
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
plugins {
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.6.21'
}
group "com.example"
version "0.0.1"
mainClassName = "com.example.ApplicationKt"
def isDevelopment = project.ext.has("development")
applicationDefaultJvmArgs = ["-Dio.ktor.development=$isDevelopment"]
repositories {
mavenCentral()
maven { url "https://maven.pkg.jetbrains.space/public/p/ktor/eap" }
maven { url "https://jitpack.io" }
}
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1")
implementation "ch.qos.logback:logback-classic:$logback_version"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation 'io.github.kotlin-telegram-bot.kotlin-telegram-bot:telegram:6.0.7'
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1")
implementation("org.jetbrains.exposed:exposed-core:0.38.2")
implementation("org.jetbrains.exposed:exposed-dao:0.38.2")
implementation("org.jetbrains.exposed:exposed-jdbc:0.38.2")
implementation('mysql:mysql-connector-java:8.0.29')
}