We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec5eb4 commit 329d915Copy full SHA for 329d915
plugins/toolkit/jetbrains-rider/build.gradle.kts
@@ -370,6 +370,14 @@ tasks.integrationTest {
370
include("**/*Test.class")
371
}
372
373
+// https://youtrack.jetbrains.com/issue/IJPL-180442
374
+tasks.withType<Test> {
375
+ classpath -= classpath.filter {
376
+ (it.name.startsWith("localization-") && it.name.endsWith(".jar"))
377
+ || it.name == "cwm-plugin.jar"
378
+ }
379
+}
380
+
381
// fix implicit dependency on generated source
382
tasks.withType<DetektCreateBaselineTask>().configureEach {
383
dependsOn(generateModels)
0 commit comments