diff --git a/project/AppDependencies.scala b/project/AppDependencies.scala index 4370049..746b2b4 100644 --- a/project/AppDependencies.scala +++ b/project/AppDependencies.scala @@ -22,15 +22,15 @@ object AppDependencies { val compile: Seq[ModuleID] = Seq( ws, - "uk.gov.hmrc" %% "bootstrap-backend-play-28" % "4.2.0", - "org.typelevel" %% "cats-core" % "2.6.0", + "uk.gov.hmrc" %% "bootstrap-backend-play-28" % "5.3.0", + "org.typelevel" %% "cats-core" % "2.6.1", "com.chuusai" %% "shapeless" % "2.4.0-M1" ) def test(scope: String = "test, it"): Seq[sbt.ModuleID] = Seq( - "org.scalatest" %% "scalatest" % "3.2.7" % scope, + "org.scalatest" %% "scalatest" % "3.2.9" % scope, "com.vladsch.flexmark" % "flexmark-all" % "0.36.8" % scope, - "org.scalacheck" %% "scalacheck" % "1.15.3" % scope, + "org.scalacheck" %% "scalacheck" % "1.15.4" % scope, "org.scalamock" %% "scalamock" % "5.1.0" % scope, "com.typesafe.play" %% "play-test" % PlayVersion.current % scope, "org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % scope, diff --git a/project/CodeCoverageSettings.scala b/project/CodeCoverageSettings.scala index db19397..0d698aa 100644 --- a/project/CodeCoverageSettings.scala +++ b/project/CodeCoverageSettings.scala @@ -33,7 +33,7 @@ object CodeCoverageSettings { val settings: Seq[Setting[_]] = Seq( ScoverageKeys.coverageExcludedPackages := excludedPackages.mkString(";"), - ScoverageKeys.coverageMinimum := 95, + ScoverageKeys.coverageMinimumStmtTotal := 95, ScoverageKeys.coverageFailOnMinimum := true, ScoverageKeys.coverageHighlighting := true ) diff --git a/project/plugins.sbt b/project/plugins.sbt index 1b10a54..821dbd5 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -24,5 +24,5 @@ addSbtPlugin("uk.gov.hmrc" % "sbt-distributables" % "2.1.0") addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.8") addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0") -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.8.1") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.3")