make jps-plugin testable from IJ infrastructure

^KTIJ-20456
This commit is contained in:
Dmitry Gridin
2022-04-13 18:40:21 +07:00
parent 2da8d53791
commit 57b9648041
14 changed files with 96 additions and 138 deletions
@@ -19,7 +19,9 @@ idePluginDependency {
"compiler/testData/diagnostics/helpers",
"compiler/tests-spec/testData",
"compiler/testData/diagnostics/testsWithStdLib",
"compiler/fir/raw-fir/psi2fir/testData"
"compiler/fir/raw-fir/psi2fir/testData",
"jps/jps-plugin/testData",
"compiler/testData/classpathOrder",
).forEach {
from(rootDir.resolve(it)) {
into(it)
@@ -0,0 +1,9 @@
plugins {
kotlin("jvm")
}
publishTestJarsForIde(
listOf(
":jps:jps-plugin",
)
)