2018-09-14 12:04:53 +03:00
|
|
|
plugins {
|
|
|
|
id 'kotlin-platform-common' version '1.2.70'
|
|
|
|
}
|
|
|
|
|
|
|
|
description = "The basic interfaces for DataForge meta-data"
|
|
|
|
|
|
|
|
group 'hep.dataforge'
|
2018-09-17 16:11:33 +03:00
|
|
|
version '0.1.1-SNAPSHOT'
|
2018-09-14 12:04:53 +03:00
|
|
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|