You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
name := "xsn-block-explorer"
|
|
organization := "com.xsn"
|
|
scalaVersion := "2.12.2"
|
|
|
|
fork in Test := true
|
|
|
|
scalacOptions ++= Seq(
|
|
// "-Xfatal-warnings",
|
|
"-unchecked",
|
|
"-deprecation",
|
|
"-feature",
|
|
"-target:jvm-1.8",
|
|
"-encoding", "UTF-8",
|
|
"-Xfuture",
|
|
"-Xlint:missing-interpolator",
|
|
"-Yno-adapted-args",
|
|
"-Ywarn-dead-code",
|
|
"-Ywarn-numeric-widen",
|
|
"-Ywarn-value-discard",
|
|
"-Ywarn-unused",
|
|
"-Ywarn-unused-import"
|
|
)
|
|
|
|
|
|
val playsonifyVersion = "1.1.0"
|
|
|
|
lazy val root = (project in file("."))
|
|
.enablePlugins(PlayScala)
|
|
|
|
|
|
|
|
libraryDependencies ++= Seq(guice, ws)
|
|
|
|
libraryDependencies += "com.alexitc" %% "playsonify" % playsonifyVersion
|
|
libraryDependencies += "com.google.inject" % "guice" % "4.1.0"
|
|
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.4"
|
|
|
|
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.25"
|
|
libraryDependencies += "ch.qos.logback" % "logback-core" % "1.2.3"
|
|
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
|
|
|
|
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "3.1.0" % Test
|
|
libraryDependencies += "com.alexitc" %% "playsonifytest" % playsonifyVersion % Test
|
|
libraryDependencies += "org.mockito" % "mockito-core" % "2.15.0" % Test
|
|
|