Skip to content

Commit

Permalink
Merge pull request #2483 from tgodzik/replace-jsonrpc4s
Browse files Browse the repository at this point in the history
chore: Replace original jsonrpc4s
  • Loading branch information
tgodzik authored Oct 22, 2024
2 parents 020d995 + f07a8c2 commit fa29730
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,15 @@ lazy val bloopShared = project
libraryDependencies ++= Seq(
Dependencies.jsoniterCore,
Dependencies.jsoniterMacros,
Dependencies.bsp4s excludeAll ExclusionRule(
organization = "com.github.plokhotnyuk.jsoniter-scala"
Dependencies.bsp4s.excludeAll(
ExclusionRule(
organization = "com.github.plokhotnyuk.jsoniter-scala"
),
ExclusionRule(
organization = "me.vican.jorge"
)
),
Dependencies.jsonrpc4s,
Dependencies.zinc,
Dependencies.log4j,
Dependencies.xxHashLibrary,
Expand Down
2 changes: 2 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ object Dependencies {
val zinc = "org.scala-sbt" %% "zinc" % zincVersion
val bsp4s = "ch.epfl.scala" %% "bsp4s" % bspVersion
val bsp4j = "ch.epfl.scala" % "bsp4j" % bspVersion
val jsonrpc4s = "io.github.alexarchambault.bleep" %% "jsonrpc4s" % "0.1.1"

val nailgun = "io.github.alexarchambault.bleep" % "nailgun-server" % "1.0.7"
val bloopConfig = "ch.epfl.scala" %% "bloop-config" % bloopConfigVersion

Expand Down

0 comments on commit fa29730

Please sign in to comment.