forked from leanovate/play-mockws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (19 loc) · 775 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
name := "play-mockws"
scalaVersion := "2.13.0"
crossScalaVersions := Seq("2.11.12", "2.12.8", scalaVersion.value)
scalacOptions ++= Seq("-deprecation", "-feature")
organization := "de.leanovate.play-mockws"
val playVersion = "2.7.3"
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"
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.8",
"org.scalacheck" %% "scalacheck" % "1.14.0",
"org.mockito" % "mockito-core" % "3.0.0"
).map(_ % Test)
Release.settings