diff --git a/cidr/build.gradle.kts b/cidr/build.gradle.kts index ebeabea3..a9dfffb7 100644 --- a/cidr/build.gradle.kts +++ b/cidr/build.gradle.kts @@ -27,7 +27,9 @@ dependencies { create(IntelliJPlatformType.CLion, clionVersion, useInstaller = useInstaller) bundledPlugins("com.intellij.clion", "com.intellij.cidr.base", "com.intellij.nativeDebug") } - implementation(project(":core")) + implementation(project(":core")) { + isTransitive = false + } implementation("org.eclipse.lsp4j:org.eclipse.lsp4j.debug:$lsp4jVersion") { exclude("org.eclipse.lsp4j", "org.eclipse.lsp4j") exclude("org.eclipse.lsp4j", "org.eclipse.lsp4j.jsonrpc") diff --git a/lsp/build.gradle.kts b/lsp/build.gradle.kts index eff7868f..a8cad36d 100644 --- a/lsp/build.gradle.kts +++ b/lsp/build.gradle.kts @@ -16,5 +16,7 @@ dependencies { compileOnly("org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3") compileOnly("com.redhat.devtools.intellij:lsp4ij:$lsp4ijVersion") compileOnly("org.eclipse.lsp4j:org.eclipse.lsp4j:$lsp4jVersion") - implementation(project(":core")) + implementation(project(":core")) { + isTransitive = false + } } \ No newline at end of file