Skip to content

Commit

Permalink
PLATUI-2664: Upgrade to Play 3.0 (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoPintoPaul committed Nov 30, 2023
1 parent 983a004 commit 4926196
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions project/AppDependencies.scala
Expand Up @@ -2,9 +2,9 @@ import sbt._

object AppDependencies {

private val bootstrapVersion = "8.0.0"
private val bootstrapVersion = "8.1.0"
private val frontendVersion = "8.0.0"
private val playVersion = "play-29"
private val playVersion = "play-30"

val compile = Seq(
"uk.gov.hmrc" %% s"bootstrap-frontend-$playVersion" % bootstrapVersion,
Expand All @@ -19,6 +19,6 @@ object AppDependencies {
"org.mockito" %% "mockito-scala-scalatest" % "1.14.8" % Test,
"uk.gov.hmrc" %% "webdriver-factory" % "0.41.0" % Test,
"com.vladsch.flexmark" % "flexmark-all" % "0.62.2" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.0" % Test
)
}
2 changes: 1 addition & 1 deletion project/plugins.sbt
Expand Up @@ -7,7 +7,7 @@ resolvers += Resolver.typesafeRepo("releases")

addSbtPlugin("uk.gov.hmrc" % "sbt-auto-build" % "3.15.0")
addSbtPlugin("uk.gov.hmrc" % "sbt-distributables" % "2.4.0")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.0")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.0")
addSbtPlugin("uk.gov.hmrc" % "sbt-accessibility-linter" % "0.36.0")
5 changes: 3 additions & 2 deletions test/it/OnlineServicesTermsSpec.scala
Expand Up @@ -35,8 +35,9 @@ class OnlineServicesTermsSpec extends AnyWordSpec with Matchers with GuiceOneApp
override def fakeApplication(): Application =
new GuiceApplicationBuilder()
.configure(
"metrics.jvm" -> false,
"metrics.enabled" -> false
"metrics.jvm" -> false,
"metrics.enabled" -> false,
"auditing.enabled" -> false
)
.build()

Expand Down

0 comments on commit 4926196

Please sign in to comment.