Skip to content

Commit

Permalink
build for play3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarduignan authored and kyle-bowden committed Jan 15, 2024
1 parent f8b7e6d commit a4f5ec6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ val scala2_13 = "2.13.7"

val silencerVersion = "1.7.7"

lazy val root = Project("play-ui-play-29", file("."))
lazy val root = Project("play-ui-play-30", file("."))
.enablePlugins(SbtTwirl)
.disablePlugins(JUnitXmlReportPlugin) // Required to prevent https://github.com/scalatest/scalatest/issues/1427
.settings(
majorVersion := 9,
scalaVersion := scala2_13,
crossScalaVersions := Seq(scala2_13),
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % "2.9.0",
"com.typesafe.play" %% "play-filters-helpers" % "2.9.0",
"org.playframework" %% "play" % "3.0.0",
"org.playframework" %% "play-filters-helpers" % "3.0.0",
"joda-time" % "joda-time" % "2.12.5",
"org.joda" % "joda-convert" % "2.0.2",
"org.apache.commons" % "commons-text" % "1.9",
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
"org.pegdown" % "pegdown" % "1.6.0" % Test,
"org.jsoup" % "jsoup" % "1.11.3" % Test,
"com.typesafe.play" %% "play-test" % "2.9.0" % Test,
"org.playframework" %% "play-test" % "3.0.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.14.0" % Test
)
)
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ resolvers += Resolver.url("HMRC-open-artefacts-ivy2", url("https://open.artefact
Resolver.ivyStylePatterns
)

addSbtPlugin("uk.gov.hmrc" % "sbt-auto-build" % "3.15.0")
addSbtPlugin("uk.gov.hmrc" % "sbt-auto-build" % "3.18.0")

addSbtPlugin("com.typesafe.play" % "sbt-twirl" % "1.6.1")
addSbtPlugin("org.playframework.twirl" % "sbt-twirl" % "2.0.1")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.0")
2 changes: 1 addition & 1 deletion src/test/scala/uk/gov/hmrc/play/views/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package uk.gov.hmrc.play

import akka.util.Timeout
import org.apache.pekko.util.Timeout
import org.jsoup.Jsoup
import org.jsoup.nodes.Document
import play.api.test.Helpers.contentAsString
Expand Down

0 comments on commit a4f5ec6

Please sign in to comment.