Skip to content

Commit 26a4f63

Browse files
committed
rd
1 parent 782faff commit 26a4f63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

buildSrc/src/main/kotlin/toolkit-intellij-subplugin.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ configurations {
4848

4949
// Exclude dependencies that ship with iDE
5050
exclude(group = "org.slf4j")
51-
if (!name.startsWith("kotlinCompiler") && !name.startsWith("generateModels")) {
51+
if (!name.startsWith("kotlinCompiler") && !name.startsWith("generateModels") && !name.startsWith("rdGen")) {
5252
// we want kotlinx-coroutines-debug and kotlinx-coroutines-test
5353
exclude(group = "org.jetbrains.kotlinx", "kotlinx-coroutines-core-jvm")
5454
exclude(group = "org.jetbrains.kotlinx", "kotlinx-coroutines-core")

plugins/toolkit/jetbrains-rider/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ tasks.withType<DetektCreateBaselineTask>().configureEach {
388388
}
389389

390390
configurations.all {
391-
if (name.contains("detekt") || name.contains("kotlinCompiler")) {
391+
if (name.contains("detekt") || name.contains("kotlinCompiler") || name.contains("rdGen")) {
392392
return@all
393393
}
394394

0 commit comments

Comments
 (0)