Moved the common klib reader functionality from Kotlin/Native to util-klib

This commit is contained in:
Alexander Gorshenev
2019-05-31 16:51:52 +03:00
committed by alexander-gorshenev
parent d1390365de
commit 7ddbd8ca80
10 changed files with 606 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
description = "Common klib reader and writer"
dependencies {
compile(kotlinStdlib())
compile(project(":kotlin-util-io"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
publish()
standardPublicJars()