357d12fc8e
The `kotlin-test` dependencies are left untouched as changing them affects publications, thus these versions are independent from the used inside our build #KTI-1349 In Progress
39 lines
945 B
Kotlin
39 lines
945 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
}
|
|
|
|
description = "Kotlin KLIB Library Commonizer API"
|
|
publish()
|
|
|
|
dependencies {
|
|
implementation(kotlinStdlib())
|
|
implementation(project(":native:kotlin-native-utils"))
|
|
testImplementation(project(":kotlin-test::kotlin-test-junit"))
|
|
testImplementation(libs.junit4)
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
testRuntimeOnly(project(":native:kotlin-klib-commonizer"))
|
|
testImplementation(project(":kotlin-gradle-plugin"))
|
|
testImplementation(project(":kotlin-gradle-statistics"))
|
|
testImplementation(project(":kotlin-gradle-plugin-model"))
|
|
testImplementation(gradleApi())
|
|
testImplementation(gradleTestKit())
|
|
testImplementation(gradleKotlinDsl())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
projectTest(parallel = false) {
|
|
workingDir = projectDir
|
|
}
|
|
|
|
runtimeJar()
|
|
sourcesJar()
|
|
javadocJar()
|