-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
25 lines (20 loc) · 857 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
name := "RainDanceBot"
version := "0.1"
scalaVersion := "2.12.4"
crossScalaVersions := Seq("2.12.4")
parallelExecution in Test := false
resolvers += "jcenter" at "http://jcenter.bintray.com"
resolvers += "jitpack.io" at "https://jitpack.io"
libraryDependencies ++= Seq(
"com.iheart" %% "ficus" % "1.4.3",
"com.jsuereth" %% "scala-arm" % "2.0",
"org.scalaj" %% "scalaj-http" % "2.3.0",
"joda-time" % "joda-time" % "2.9.9",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.8.7", // Must be 2.8.7 to support Discord4J... Upgrade if it upgrades
"com.github.austinv11" % "Discord4J" % "2.9.2",
"com.jsuereth" %% "scala-arm" % "2.0",
"io.spray" %% "spray-json" % "1.3.3",
"org.scalatest" %% "scalatest" % "3.0.4" % Test,
"org.specs2" %% "specs2-mock" % "4.0.2" % Test
)
coverageExcludedPackages := ".*\\.sample.*;.*\\.apps.*"