blob: 2bff59cd5571663baa59a2ed1bb5fded20a17eb8 [file] [log] [blame]
idePluginDependency {
apply<JavaPlugin>()
publish()
val jar: Jar by tasks
jar.apply {
listOf(
"compiler/testData/asJava/lightClasses",
"compiler/testData/loadJava/compiledKotlin",
"compiler/fir/analysis-tests/testData/resolve",
"compiler/fir/analysis-tests/testData/resolveWithStdlib",
"compiler/testData/diagnostics/tests",
"compiler/testData/diagnostics/helpers",
"compiler/tests-spec/testData",
"compiler/testData/diagnostics/testsWithStdLib",
"compiler/fir/raw-fir/psi2fir/testData",
).forEach {
from(rootDir.resolve(it)) {
into(it)
}
}
}
}