2018-09-24 21:13:47 +00:00
|
|
|
plugins {
|
|
|
|
application
|
|
|
|
kotlin("jvm")
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
2018-11-01 12:13:15 +00:00
|
|
|
mainClassName = "io.ktor.server.netty.EngineMain"
|
2018-09-24 21:13:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven(url = "http://dl.bintray.com/kotlin/ktor")
|
|
|
|
maven(url = "https://dl.bintray.com/kotlin/kotlinx")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-12-20 14:47:10 +00:00
|
|
|
val ktorVersion = "1.2.6"
|
2019-05-30 11:54:24 +00:00
|
|
|
|
2019-06-12 23:19:50 +00:00
|
|
|
implementation(rootProject)
|
2018-09-24 21:13:47 +00:00
|
|
|
implementation(kotlin("stdlib-jdk8"))
|
2019-05-30 11:54:24 +00:00
|
|
|
implementation("ch.qos.logback:logback-classic:1.2.3")
|
2019-05-30 12:28:56 +00:00
|
|
|
implementation("io.ktor:ktor-server-core:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-server-netty:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-gson:$ktorVersion")
|
2018-09-24 21:13:47 +00:00
|
|
|
}
|