Skip to content

Commit ad52c45

Browse files
Backport "bugfix: Exclude newer LSP4j, which is built on JDK 11" to LTS (#21145)
Backports #20771 to the LTS branch. PR submitted by the release tooling. [skip ci]
2 parents 5f53f73 + 4296d2d commit ad52c45

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

project/Build.scala

+4-2
Original file line numberDiff line numberDiff line change
@@ -1136,8 +1136,10 @@ object Build {
11361136
libraryDependencies ++= Seq(
11371137
"org.lz4" % "lz4-java" % "1.8.0",
11381138
"io.get-coursier" % "interface" % "1.0.18",
1139-
"org.scalameta" % "mtags-interfaces" % mtagsVersion,
1140-
"com.google.guava" % "guava" % "33.2.1-jre"
1139+
("org.scalameta" % "mtags-interfaces" % mtagsVersion)
1140+
.exclude("org.eclipse.lsp4j","org.eclipse.lsp4j")
1141+
.exclude("org.eclipse.lsp4j","org.eclipse.lsp4j.jsonrpc"),
1142+
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.20.1",
11411143
),
11421144
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.12" % mtagsVersion % SourceDeps),
11431145
ivyConfigurations += SourceDeps.hide,

0 commit comments

Comments
 (0)