-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
33 lines (28 loc) · 963 Bytes
/
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
buildscript {
ext.kotlin_version = '1.3.61'
ext.ktor_version = '1.2.6'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: "org.jetbrains.kotlin.jvm"
defaultTasks 'run'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
runtime "org.jetbrains.kotlin:kotlin-script-runtime:$kotlin_version"
implementation "io.ktor:ktor-client-websockets:$ktor_version"
implementation "io.ktor:ktor-client-cio:$ktor_version"
implementation "io.ktor:ktor-client-js:$ktor_version"
implementation "io.ktor:ktor-client-okhttp:$ktor_version"
implementation "com.github.salomonbrys.kotson:kotson:2.5.0"
implementation 'com.yundom:kache:1.0.5'
testCompile 'junit:junit:4.11'
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
}