Skip to content

Commit 7c9e5e6

Browse files
authored
Merge pull request #222 from hmrc/DL-17111
feat(DL-17111): Enabled rebranding
2 parents 4e0321e + ab93124 commit 7c9e5e6

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ lazy val microservice: Project = Project(appName, file("."))
4343
defaultSettings(),
4444
scoverageSettings,
4545
scalacOptions += "-Ywarn-unused:-explicits,-implicits",
46-
scalaVersion := "2.13.16",
46+
scalaVersion := "2.13.17",
4747
libraryDependencies ++= AppDependencies.compile ++ AppDependencies.test,
4848
libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always,
4949
retrieveManaged := true,

conf/application.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,7 @@ cancelRedirectUrl: "https://www.gov.uk/"
147147
allowedHosts = [
148148
"localhost"
149149
]
150+
151+
play-frontend-hmrc {
152+
useRebrand = true
153+
}

project/AppDependencies.scala

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,19 @@ import sbt.*
1919
object AppDependencies {
2020
import play.sbt.PlayImport.ws
2121

22+
private val bootstrapPlayVersion = "10.3.0"
23+
2224
val compile: Seq[ModuleID] = Seq(
2325
ws,
24-
"uk.gov.hmrc" %% "bootstrap-frontend-play-30" % "10.3.0",
26+
"uk.gov.hmrc" %% "bootstrap-frontend-play-30" % bootstrapPlayVersion,
2527
"uk.gov.hmrc" %% "domain-play-30" % "11.0.0",
2628
"uk.gov.hmrc" %% "play-partials-play-30" % "10.2.0",
27-
"uk.gov.hmrc" %% "play-frontend-hmrc-play-30" % "12.18.0",
28-
"uk.gov.hmrc" %% "http-caching-client-play-30" % "12.2.0",
29+
"uk.gov.hmrc" %% "play-frontend-hmrc-play-30" % "12.19.0",
30+
"uk.gov.hmrc" %% "http-caching-client-play-30" % "12.2.0",
2931
)
3032

3133
val test: Seq[ModuleID] = Seq(
32-
"uk.gov.hmrc" %% "bootstrap-test-play-30" % "10.3.0" % Test
34+
"uk.gov.hmrc" %% "bootstrap-test-play-30" % bootstrapPlayVersion % Test
3335
)
3436
val itDependencies: Seq[ModuleID] = Seq()
3537
}

project/build.properties

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

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ addSbtPlugin("uk.gov.hmrc" % "sbt-distributables" % "2.6.0")
2323

2424
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.9")
2525

26-
addSbtPlugin("org.scoverage" %% "sbt-scoverage" % "2.3.1")
26+
addSbtPlugin("org.scoverage" %% "sbt-scoverage" % "2.4.0")
2727

2828
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0" exclude("org.scala-lang.modules", "scala-xml_2.12"))

0 commit comments

Comments
 (0)