Skip to content

Commit

Permalink
Merge pull request #397 from hmrc/version-update
Browse files Browse the repository at this point in the history
upgrade dependency versions
  • Loading branch information
arunkumar461 authored Oct 16, 2024
2 parents 5c13499 + f283700 commit ee20d3f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ lazy val root = Project(appName, file("."))
pipelineStages := Seq(digest),
// below line required to force asset pipeline to operate in dev rather than only prod
Assets / pipelineStages := Seq(concat, uglify),
uglifyOps := UglifyOps.singleFile,
// only compress files generated by concat
uglify / includeFilter := GlobFilter("application.js")
)
Expand Down
4 changes: 2 additions & 2 deletions project/AppDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import sbt.*

object AppDependencies {

private val bootstrapVersion = "9.4.0"
private val bootstrapVersion = "9.5.0"
private val hmrcMongoVersion = "2.2.0"

val compile: Seq[ModuleID] = Seq(
play.sbt.PlayImport.ws,
"uk.gov.hmrc" %% "play-frontend-hmrc-play-30" % "10.10.0",
"uk.gov.hmrc" %% "play-frontend-hmrc-play-30" % "10.12.0",
"uk.gov.hmrc" %% "play-conditional-form-mapping-play-30" % "2.0.0",
"uk.gov.hmrc" %% "bootstrap-frontend-play-30" % bootstrapVersion,
"uk.gov.hmrc.mongo" %% "hmrc-mongo-play-30" % hmrcMongoVersion
Expand Down
18 changes: 9 additions & 9 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ ThisBuild / libraryDependencySchemes ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
)

addSbtPlugin("uk.gov.hmrc" % "sbt-auto-build" % "3.22.0")
addSbtPlugin("uk.gov.hmrc" % "sbt-distributables" % "2.5.0")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.5")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9")
addSbtPlugin("io.github.irundaia" % "sbt-sassify" % "1.5.2")
addSbtPlugin("net.ground5hark.sbt" % "sbt-concat" % "0.2.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-uglify" % "2.0.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.4")
addSbtPlugin("uk.gov.hmrc" % "sbt-auto-build" % "3.22.0")
addSbtPlugin("uk.gov.hmrc" % "sbt-distributables" % "2.5.0")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.5")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9")
addSbtPlugin("io.github.irundaia" % "sbt-sassify" % "1.5.2")
addSbtPlugin("com.github.sbt" % "sbt-concat" % "1.0.0")
addSbtPlugin("com.github.sbt" % "sbt-uglify" % "3.0.1")
addSbtPlugin("com.github.sbt" % "sbt-digest" % "2.0.0")

0 comments on commit ee20d3f

Please sign in to comment.