-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (31 loc) · 1.05 KB
/
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
28
29
30
31
32
33
34
name := "StockMonitorBot"
version := "0.1"
scalaVersion := "2.12.5"
scalacOptions ++= Seq(
"-target:jvm-1.8",
"-encoding", "UTF-8",
"-unchecked",
"-deprecation",
"-Xfuture",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Ywarn-unused"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http-spray-json" % "10.1.1",
"com.typesafe.akka" %% "akka-stream" % "2.5.11",
"com.typesafe.akka" %% "akka-http" % "10.1.0",
"info.mukel" %% "telegrambot4s" % "3.0.14",
"org.slf4j" % "slf4j-jdk14" % "1.7.5",
"org.scalactic" %% "scalactic" % "3.0.5",
"com.typesafe.slick" %% "slick" % "3.2.3",
"com.typesafe.slick" %% "slick-hikaricp" % "3.2.3",
"org.postgresql" % "postgresql" % "42.0.0",
"org.scalamock" %% "scalamock" % "4.1.0" % Test,
"com.typesafe.akka" %% "akka-http-testkit" % "10.1.0" % Test,
"org.scalatest" %% "scalatest" % "3.0.5" % Test)
//"sbt assembly" to make jar
mainClass in assembly := Some("stockmonitoringbot.Main")
assemblyJarName in assembly := "StockMonitor.jar"