-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (25 loc) · 951 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
28
29
30
31
name := "mi-fi"
version := "4.8.0"
scalaVersion := "2.12.11"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies ++= Seq(
"com.github.tototoshi" %% "scala-csv" % "1.3.5",
"com.typesafe.play" %% "play-json" % "2.7.1",
"com.typesafe.slick" %% "slick" % "3.3.0",
"com.typesafe.play" %% "play-slick" % "4.0.0",
"javax.inject" % "javax.inject" % "1",
"joda-time" % "joda-time" % "2.10.1",
"org.asynchttpclient" % "async-http-client" % "2.4.4",
"org.mockito" % "mockito-core" % "1.10.17" % "test",
"org.postgresql" % "postgresql" % "42.2.2",
"org.scala-lang.modules" %% "scala-async" % "0.9.7",
ehcache,
guice,
jdbc,
ws,
"org.specs2" %% "specs2-matcher" % "4.4.1" % Test,
"org.specs2" %% "specs2-matcher-extra" % "4.4.1" % Test,
specs2 % Test
)
scalacOptions in Test ++= Seq("-Yrangepos")