Files
kotlin-fork/prepare/kotlin-compiler-internal-test-framework/build.gradle.kts
T
Vyacheslav Gerasimov b6d80a1149 Build: Fix kotlin-compiler-internal-test-framework empty sources jar
Should also pack pack test source set from :compiler:tests-common
2020-12-07 19:16:43 +03:00

22 lines
292 B
Kotlin

plugins {
java
}
val embedded by configurations
dependencies {
embedded(projectTests(":compiler:tests-common")) { isTransitive = false }
}
publish()
runtimeJar()
sourcesJar {
from {
project(":compiler:tests-common").sourceSets["test"].allSource
}
}
javadocJar()