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

Implement JSON-RPC and LSP with Monix #164

Merged
merged 19 commits into from
Jan 4, 2018
Merged
Show file tree
Hide file tree
Changes from 12 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
5 changes: 1 addition & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ lazy val semanticdbSettings = List(

lazy val languageserver = project
.settings(
resolvers += Resolver.bintrayRepo("dhpcs", "maven"),
libraryDependencies ++= Seq(
"com.dhpcs" %% "scala-json-rpc" % "2.0.1",
Copy link
Member

Choose a reason for hiding this comment

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

🎉

"com.beachape" %% "enumeratum" % V.enumeratum,
"com.beachape" %% "enumeratum-play-json" % "1.5.12-2.6.0-M7",
"com.typesafe.scala-logging" %% "scala-logging" % "3.7.2",
Expand All @@ -105,7 +103,6 @@ lazy val metaserver = project
flatPackage = true // Don't append filename to package
) -> sourceManaged.in(Compile).value./("protobuf")
),
resolvers += Resolver.bintrayRepo("dhpcs", "maven"),
testFrameworks := new TestFramework("utest.runner.Framework") :: Nil,
fork in Test := true, // required for jni interrop with leveldb.
buildInfoKeys := Seq[BuildInfoKey](
Expand All @@ -126,7 +123,7 @@ lazy val metaserver = project
"org.scalameta" %% "semanticdb-scalac" % V.scalameta cross CrossVersion.full,
"com.beachape" %% "enumeratum" % V.enumeratum,
"com.lihaoyi" %% "utest" % "0.6.0" % Test,
"org.scalameta" %% "testkit" % V.scalameta % Test,
"org.scalameta" %% "testkit" % V.scalameta % Test
)
)
.dependsOn(
Expand Down
9 changes: 0 additions & 9 deletions languageserver/bin/logback.groovy

This file was deleted.

188 changes: 0 additions & 188 deletions languageserver/src/main/scala/langserver/core/Connection.scala

This file was deleted.

106 changes: 0 additions & 106 deletions languageserver/src/main/scala/langserver/core/LanguageServer.scala

This file was deleted.

17 changes: 0 additions & 17 deletions languageserver/src/main/scala/langserver/core/Main.scala

This file was deleted.

Loading