Moved basic classes from konan/utils to util-io

This commit is contained in:
Alexander Gorshenev
2019-05-31 16:50:01 +03:00
committed by alexander-gorshenev
parent f5190f195d
commit d1390365de
9 changed files with 25 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
description = "Kotlin/Native utils"
dependencies {
compile(kotlinStdlib())
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
publish()
standardPublicJars()