ci: fix deps

This commit is contained in:
FalsePattern 2024-03-11 01:40:02 +01:00
parent 0ebbe1cc9b
commit 1ff8616d26
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23

View file

@ -199,6 +199,9 @@ project(":lsp-common") {
apply {
plugin("java-library")
}
dependencies {
api("org.eclipse.lsp4j:org.eclipse.lsp4j:0.22.0")
}
}
project(":lsp") {
@ -208,7 +211,6 @@ project(":lsp") {
dependencies {
implementation(project(":common"))
api(project(":lsp-common"))
api("org.eclipse.lsp4j:org.eclipse.lsp4j:0.22.0")
implementation("com.vladsch.flexmark:flexmark:0.64.8")
api("org.apache.commons:commons-lang3:3.14.0")
}