Publish compiler testdata which is required for Kotlin plugin
This commit is contained in:
committed by
TeamCityServer
parent
71c9e62d64
commit
ea24da117b
@@ -0,0 +1,26 @@
|
||||
idePluginDependency {
|
||||
apply<JavaPlugin>()
|
||||
|
||||
publish()
|
||||
|
||||
val jar: Jar by tasks
|
||||
|
||||
jar.apply {
|
||||
listOf(
|
||||
"compiler/testData/asJava/lightClasses",
|
||||
"compiler/testData/asJava/script",
|
||||
"compiler/testData/asJava/ultraLightClasses",
|
||||
"compiler/testData/asJava/ultraLightFacades",
|
||||
"compiler/testData/asJava/ultraLightScripts",
|
||||
"compiler/testData/loadJava/compiledKotlin",
|
||||
"compiler/fir/analysis-tests/testData/resolve",
|
||||
"compiler/fir/analysis-tests/testData/resolveWithStdlib",
|
||||
"compiler/testData/diagnostics/tests",
|
||||
"compiler/testData/diagnostics/testsWithStdLib"
|
||||
).forEach {
|
||||
from(rootDir.resolve(it)) {
|
||||
into(it)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user