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
@@ -8,7 +8,6 @@ dependencies {
embedded(project(":native:kotlin-klib-commonizer")) { isTransitive = false }
runtime(kotlinStdlib())
runtime(project(":kotlin-compiler-embeddable"))
runtime(project(":native:kotlin-native-utils"))
}
sourceSets {
-1
View File
@@ -26,7 +26,6 @@ dependencies {
mavenCompileScope(project(":kotlin-compiler"))
compile(kotlinStdlib())
compile(project(":native:kotlin-native-utils"))
testCompile(commonDep("junit:junit"))
testCompile(projectTests(":compiler:tests-common"))
+1
View File
@@ -7,6 +7,7 @@ dependencies {
compileOnly(project(":compiler:frontend"))
compileOnly(project(":compiler:frontend.java"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compile(project(":native:kotlin-native-utils"))
}
sourceSets {
+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()