29 lines
566 B
Groovy
29 lines
566 B
Groovy
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"
|
|
compile "hep.dataforge:dataforge-control"
|
|
compile project(":numass-core")
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
javaParameters = true
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
experimental {
|
|
coroutines "enable"
|
|
}
|
|
} |