-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (18 loc) · 1.01 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
name := """jis"""
organization := "bpawan.com"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.6"
libraryDependencies += guice
libraryDependencies += "com.netaporter" %% "scala-uri" % "0.4.16"
libraryDependencies += "net.logstash.logback" % "logstash-logback-encoder" % "5.1"
libraryDependencies += "net.codingwell" %% "scala-guice" % "4.2.1"
libraryDependencies += "mysql" % "mysql-connector-java" % "8.0.11"
libraryDependencies += "com.typesafe.play" %% "play-slick" % "3.0.3"
libraryDependencies += "com.typesafe.play" %% "play-slick-evolutions" % "3.0.3"
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
libraryDependencies += "org.mockito" % "mockito-core" % "2.18.3" % Test
libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "4.2.0" % "test")
scalacOptions in Test ++= Seq("-Yrangepos")
// Use the test config while running the tests.
javaOptions in Test += "-Dconfig.file=conf/application.test.conf"