Include :native:kotlin-native-utils into kotlin-compiler.jar
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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"))
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user