-
Notifications
You must be signed in to change notification settings - Fork 34
/
build.sbt
35 lines (25 loc) · 1.07 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
30
31
32
33
34
35
name := "play-mockws"
scalacOptions ++= Seq("-deprecation", "-feature")
organization := "de.leanovate.play-mockws"
val playVersion = "2.8.1"
ThisBuild / crossScalaVersions := List("2.12.10", "2.13.1")
fork := true
resolvers += "Typesafe repository".at("https://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",
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.6"
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.8",
"org.scalatestplus" %% "scalacheck-1-15" % "3.2.8.0",
"org.scalacheck" %% "scalacheck" % "1.15.4",
"org.mockito" % "mockito-core" % "3.11.0"
).map(_ % Test)
Release.settings
// code linting
ThisBuild / githubWorkflowBuildPreamble += WorkflowStep.Run(
commands = List("scripts/validate-code check"),
name = Some("Lint")
)