Skip to content

Commit 3dce19e

Browse files
committed
language-server: Upgrade dependencies
1 parent c572474 commit 3dce19e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

project/Build.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,9 +752,11 @@ object Build {
752752
fork in run := true,
753753
fork in Test := true,
754754
libraryDependencies ++= Seq(
755-
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.5.0",
755+
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.6.0",
756756
Dependencies.`jackson-databind`
757757
),
758+
// Work around https://github.com/eclipse/lsp4j/issues/295
759+
dependencyOverrides += "org.eclipse.xtend" % "org.eclipse.xtend.lib" % "2.16.0",
758760
javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value,
759761

760762
run := Def.inputTaskDyn {

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import sbt._
44
* to ensure the same version of the dependency is used in all projects
55
*/
66
object Dependencies {
7-
private val jacksonVersion = "2.9.0"
7+
private val jacksonVersion = "2.9.8"
88
val `jackson-databind` =
99
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion
1010
val `jackson-dataformat-yaml` =

0 commit comments

Comments
 (0)