Skip to content

Commit 2af8372

Browse files
committed
Update sbt, scoverage, coveralls, circe, akka, scalatest versions to the respective latest ones.
Update play-json version to latest minor 2.3.x version.
1 parent 8b0179a commit 2af8372

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

build.sbt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import scoverage.ScoverageSbtPlugin
2-
31
organization := "org.zalando"
42

53
name := "scala-jsonapi"
@@ -14,30 +12,33 @@ resolvers ++= Seq(
1412
)
1513

1614
libraryDependencies ++= {
17-
val circeVersion = "0.5.0-M1"
18-
val akkaVersion = "2.4.7"
15+
val circeVersion = "0.5.0-M2"
16+
val akkaVersion = "2.4.8"
1917

2018
Seq(
2119
"io.spray" %% "spray-json" % "1.3.2" % "provided",
2220
"io.spray" %% "spray-httpx" % "1.3.3" % "provided",
2321
"com.typesafe.akka" %% "akka-actor" % akkaVersion % "provided",
2422
"com.typesafe.akka" %% "akka-http-core" % akkaVersion % "provided",
2523
"com.typesafe.akka" %% "akka-http-experimental" % akkaVersion % "provided",
26-
"com.typesafe.play" %% "play-json" % "2.3.8" % "provided",
24+
"com.typesafe.play" %% "play-json" % "2.3.10" % "provided",
2725
"io.circe" %% "circe-core" % circeVersion % "provided",
2826
"io.circe" %% "circe-generic" % circeVersion % "provided",
2927
"io.circe" %% "circe-parser" % circeVersion % "provided",
30-
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
28+
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
3129
"com.typesafe.akka" %% "akka-http-testkit" % akkaVersion % "test"
3230

3331
)
3432
}
3533

34+
lazy val root = (project in file("."))
35+
.enablePlugins(ScoverageSbtPlugin)
36+
3637
scalafmtConfig in ThisBuild := Some(file(".scalafmt"))
3738

38-
ScoverageSbtPlugin.ScoverageKeys.coverageMinimum := 80
39+
coverageMinimum := 80
3940

40-
ScoverageSbtPlugin.ScoverageKeys.coverageFailOnMinimum := true
41+
coverageFailOnMinimum := true
4142

4243
publishMavenStyle := true
4344

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.11
1+
sbt.version=0.13.12

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
resolvers += Classpaths.sbtPluginReleases
22

3-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.4")
3+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.5")
44

5-
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.0.0")
5+
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.1.0")
66

77
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
88

0 commit comments

Comments
 (0)