-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
27 lines (20 loc) · 888 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 := """tobyks"""
version := "1.0"
scalaVersion := "2.11.7"
// Change this to another test framework if you prefer
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.5" % "test"
resolvers += "scalac repo" at "https://raw.githubusercontent.com/ScalaConsultants/mvn-repo/master/"
libraryDependencies += "io.scalac" %% "slack-scala-bot-core" % "0.2.1"
libraryDependencies += "me.lessis" %% "hubcat" % "0.2.0-SNAPSHOT"
val akkaVersion = "2.3.12"
libraryDependencies ++=
Seq(
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-persistence-experimental" % akkaVersion,
"com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "0.4.1",
"org.reactivemongo" %% "reactivemongo" % "0.11.4"
)
enablePlugins(JavaAppPackaging)
herokuProcessTypes in Compile := Map(
"tobyks" -> "target/universal/stage/bin/tobyks"
)