Skip to content

Commit

Permalink
Merge pull request #75 from hmrc/DLS-9801-tudor-crown-update
Browse files Browse the repository at this point in the history
[DLS-9801] Tudor Crown update
  • Loading branch information
nubz authored Feb 19, 2024
2 parents 9bd0738 + c40526d commit 76837ef
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions project/AppDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@ import sbt.*
object AppDependencies {
val hmrcBootstrapVersion = "7.15.0"
val hmrcMongoVersion = "0.68.0"
val playVersion = "play-28"

val compile: Seq[ModuleID] = Seq(
ws,
"uk.gov.hmrc" %% "bootstrap-frontend-play-28" % hmrcBootstrapVersion,
"uk.gov.hmrc" %% s"bootstrap-frontend-$playVersion" % hmrcBootstrapVersion,
"uk.gov.hmrc.mongo" %% "hmrc-mongo-play-28" % hmrcMongoVersion,
"uk.gov.hmrc" %% "totp-generator" % "0.24.0",
"org.typelevel" %% "cats-core" % "2.9.0",
"uk.gov.hmrc" %% "play-frontend-hmrc" % "7.29.0-play-28"
"uk.gov.hmrc" %% s"play-frontend-hmrc-$playVersion" % "8.5.0"
)

def test(scope: String = "test"): Seq[ModuleID] = Seq(
"uk.gov.hmrc" %% "bootstrap-test-play-28" % hmrcBootstrapVersion % scope,
"uk.gov.hmrc" %% s"bootstrap-test-$playVersion" % hmrcBootstrapVersion % scope,
"org.mockito" %% "mockito-scala" % "1.17.12" % scope,
"uk.gov.hmrc.mongo" %% "hmrc-mongo-test-play-28" % hmrcMongoVersion % scope
"uk.gov.hmrc.mongo" %% s"hmrc-mongo-test-$playVersion" % hmrcMongoVersion % scope
)
}

0 comments on commit 76837ef

Please sign in to comment.