-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
23 lines (16 loc) · 842 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
name := """Pinky"""
organization := "ifreitas"
version := "1.0.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.0"
EclipseKeys.preTasks := Seq(compile in Compile, compile in Test)
import NativePackagerHelper.directory
mappings in Universal ++= directory("bots")
libraryDependencies += guice
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
libraryDependencies += "org.mockito" % "mockito-core" % "2.13.0" % "test"
libraryDependencies += ehcache
val akkaVersion = "2.5.11"
dependencyOverrides += "com.google.guava" % "guava" % "22.0"
dependencyOverrides += "com.typesafe.akka" %% "akka-actor" % akkaVersion
dependencyOverrides += "com.typesafe.akka" %% "akka-stream" % akkaVersion