-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
39 lines (33 loc) · 1.02 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
32
33
34
35
36
37
38
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id 'application'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.3.70'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile 'org.jsoup:jsoup:1.13.1'
implementation "com.github.elbekD:kt-telegram-bot:1.3.4"
compile 'org.jetbrains.exposed:exposed-core:0.24.1'
compile 'org.jetbrains.exposed:exposed-dao:0.24.1'
compile 'org.jetbrains.exposed:exposed-jdbc:0.24.1'
compile 'org.postgresql:postgresql:42.2.2'
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.20.0"
compile 'org.slf4j:slf4j-simple:1.6.1'
implementation 'org.bytedeco.javacpp-presets:tesseract-platform:4.0.0-1.4.4'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
application {
mainClassName = 'MainKt'
}