Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Replace original jsonrpc4s #2483

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
Comment on lines +61 to +69
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I guess we should also switch the jsonrpc4s version in build-server-protocol?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm... that might be an option too, but it's only really used by Bloop currently as far as I know

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
Loading