From 72bfa6135a83d4996ba1b83116a25ba9a75073bf Mon Sep 17 00:00:00 2001 From: Hamza Remmal Date: Mon, 25 Aug 2025 17:52:50 +0200 Subject: [PATCH] chore: use newer version of `org.eclipse.lsp4j` --- project/Build.scala | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/project/Build.scala b/project/Build.scala index f7ab11833574..858e41ff082d 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -2841,10 +2841,8 @@ object Build { libraryDependencies ++= Seq( "org.lz4" % "lz4-java" % "1.8.0", "io.get-coursier" % "interface" % "1.0.18", - ("org.scalameta" % "mtags-interfaces" % mtagsVersion) - .exclude("org.eclipse.lsp4j","org.eclipse.lsp4j") - .exclude("org.eclipse.lsp4j","org.eclipse.lsp4j.jsonrpc"), - "org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.20.1", + "org.scalameta" % "mtags-interfaces" % mtagsVersion, + "com.google.guava" % "guava" % "33.2.1-jre", ), libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.16" % mtagsVersion % SourceDeps), ivyConfigurations += SourceDeps.hide,