New JSON parsing library - circle. Integrated with akka-http. Test sending message by bot.

This commit is contained in:
Pavel Kachalouski
2018-05-13 23:28:21 +02:00
parent 715514f9ec
commit 9690ef0a3d
16 changed files with 457 additions and 77 deletions

View File

@@ -4,7 +4,9 @@ object Dependencies {
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5"
lazy val akka = "com.typesafe.akka" %% "akka-actor" % "2.5.12"
lazy val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.1.1"
lazy val akkaHttpSprayJson = "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.1"
lazy val akkaStream = "com.typesafe.akka" %% "akka-stream" % "2.5.12"
lazy val vkapi = "com.vk.api" % "sdk" % "0.5.12"
lazy val circleCore = "io.circe" %% "circe-core" % "0.9.3"
lazy val circleGeneric = "io.circe" %% "circe-generic" % "0.9.3"
lazy val circleParser = "io.circe" %% "circe-parser" % "0.9.3"
}

1
project/plugins.sbt Normal file
View File

@@ -0,0 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.6")