ci: make cross-subproject dependencies non-transitive
This commit is contained in:
parent
ac90dab503
commit
dec12a8041
2 changed files with 6 additions and 2 deletions
|
@ -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")
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue