dataforge-core/build.gradle
2018-09-14 12:04:53 +03:00

24 lines
474 B
Groovy

plugins {
id 'kotlin-platform-common' version '1.2.70'
}
description = "The basic interfaces for DataForge meta-data"
group 'hep.dataforge'
version '0.1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-common"
testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common"
testCompile "org.jetbrains.kotlin:kotlin-test-common"
}
kotlin {
experimental {
coroutines "enable"
}
}