ci: make cross-subproject dependencies non-transitive

This commit is contained in:
FalsePattern 2025-04-04 16:43:25 +02:00
parent ac90dab503
commit dec12a8041
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
2 changed files with 6 additions and 2 deletions

View file

@ -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")

View file

@ -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
}
}