-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
27 lines (18 loc) · 828 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name := "twitter-telegram-bot"
version := "0.1"
scalaVersion := "2.12.5"
val http4sVersion = "0.18.9"
resolvers += "jitpack" at "https://jitpack.io"
scalacOptions ++= Seq("-Ypartial-unification")
libraryDependencies += "info.mukel" %% "telegrambot4s" % "3.0.14"
libraryDependencies ++= Seq(
"com.github.nikalaikina" % "twitter4s" % "direct_message_fix-SNAPSHOT",
"org.http4s" %% "http4s-core" % http4sVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
"com.typesafe.akka" %% "akka-persistence" % "2.5.9",
)
mainClass in (Compile, run) := Some("com.github.nikalaikina.twitter.Main")