forked from leanovate/play-mockws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
30 lines (20 loc) · 893 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
name := "play-mockws"
scalaVersion := "2.12.2"
crossScalaVersions := Seq("2.11.11", "2.12.2")
scalacOptions ++= Seq("-deprecation", "-feature")
organization := "de.leanovate.play-mockws"
val playVersion = "2.6.0"
fork := true
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % playVersion % "provided",
"com.typesafe.play" %% "play-ahc-ws" % playVersion % "provided",
"com.typesafe.play" %% "play-test" % playVersion % "provided",
"com.typesafe.play" %% "play-iteratees-reactive-streams" % "2.6.1"
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1",
"org.scalacheck" %% "scalacheck" % "1.13.4",
"org.mockito" % "mockito-core" % "2.7.13"
) map (_ % Test)
Release.settings