Include :native:kotlin-native-utils into kotlin-compiler.jar

This commit is contained in:
Dmitriy Dolovov
2020-03-30 11:17:19 +07:00
parent 28cb9d4e13
commit 31a1f8ff4b
7 changed files with 13 additions and 8 deletions
+5 -3
View File
@@ -6,19 +6,21 @@ plugins {
description = "Kotlin/Native utils"
dependencies {
compile(kotlinStdlib())
compileOnly(kotlinStdlib())
compile(project(":kotlin-util-io"))
testCompile(commonDep("junit:junit"))
testCompileOnly(project(":kotlin-reflect-api"))
testRuntime(project(":kotlin-reflect"))}
testRuntime(project(":kotlin-reflect"))
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
// TODO: this single known external consumer of this artifact is Kotlin/Native backend,
// so publishing could be stopped after migration to monorepo
publish()
standardPublicJars()