b6d80a1149
Should also pack pack test source set from :compiler:tests-common
22 lines
292 B
Kotlin
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()
|