2100afd122
^KTIJ-20456
19 lines
325 B
Kotlin
19 lines
325 B
Kotlin
idePluginDependency {
|
|
apply<JavaPlugin>()
|
|
|
|
publish()
|
|
|
|
val jar: Jar by tasks
|
|
|
|
jar.apply {
|
|
listOf(
|
|
"jps/jps-plugin/testData",
|
|
"compiler/testData/classpathOrder",
|
|
).forEach {
|
|
from(rootDir.resolve(it)) {
|
|
into(it)
|
|
}
|
|
}
|
|
}
|
|
}
|