Skip to content

Commit

Permalink
extra dependency bumps (#59)
Browse files Browse the repository at this point in the history
* extra dependency bumps

* Update AppDependencies.scala
  • Loading branch information
BetaDraconis authored May 25, 2021
1 parent eb1fc04 commit 757b940
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions project/AppDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion project/CodeCoverageSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit 757b940

Please sign in to comment.