Initial commit. Playing with VK api for the bot.

This commit is contained in:
Pavel Kachalouski
2018-05-08 22:49:55 +02:00
commit 8b705c8f77
10 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import sbt._
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 akkaStream = "com.typesafe.akka" %% "akka-stream" % "2.5.12"
lazy val vkapi = "com.vk.api" % "sdk" % "0.5.12"
}