2017-11-05 22:10:29 +03:00
|
|
|
plugins {
|
|
|
|
id "com.github.johnrengelman.shadow" version "2.0.1"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
description = 'kodex/ktor based server'
|
|
|
|
|
|
|
|
//mainClassName = "inr.numass.server.ServerRunner"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile "hep.dataforge:kodex-server"
|
|
|
|
compile "hep.dataforge:dataforge-storage"
|
2017-11-06 15:00:24 +03:00
|
|
|
compile "hep.dataforge:dataforge-control"
|
2017-11-05 22:10:29 +03:00
|
|
|
compile project(":numass-core")
|
|
|
|
}
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
javaParameters = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
experimental {
|
|
|
|
coroutines "enable"
|
|
|
|
}
|
|
|
|
}
|