Skip to content

Commit a4f5ec6

Browse files
oscarduignankyle-bowden
authored andcommitted
build for play3.0
1 parent f8b7e6d commit a4f5ec6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@ val scala2_13 = "2.13.7"
22

33
val silencerVersion = "1.7.7"
44

5-
lazy val root = Project("play-ui-play-29", file("."))
5+
lazy val root = Project("play-ui-play-30", file("."))
66
.enablePlugins(SbtTwirl)
77
.disablePlugins(JUnitXmlReportPlugin) // Required to prevent https://github.com/scalatest/scalatest/issues/1427
88
.settings(
99
majorVersion := 9,
1010
scalaVersion := scala2_13,
1111
crossScalaVersions := Seq(scala2_13),
1212
libraryDependencies ++= Seq(
13-
"com.typesafe.play" %% "play" % "2.9.0",
14-
"com.typesafe.play" %% "play-filters-helpers" % "2.9.0",
13+
"org.playframework" %% "play" % "3.0.0",
14+
"org.playframework" %% "play-filters-helpers" % "3.0.0",
1515
"joda-time" % "joda-time" % "2.12.5",
1616
"org.joda" % "joda-convert" % "2.0.2",
1717
"org.apache.commons" % "commons-text" % "1.9",
1818
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
1919
"org.pegdown" % "pegdown" % "1.6.0" % Test,
2020
"org.jsoup" % "jsoup" % "1.11.3" % Test,
21-
"com.typesafe.play" %% "play-test" % "2.9.0" % Test,
21+
"org.playframework" %% "play-test" % "3.0.0" % Test,
2222
"org.scalacheck" %% "scalacheck" % "1.14.0" % Test
2323
)
2424
)

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ resolvers += Resolver.url("HMRC-open-artefacts-ivy2", url("https://open.artefact
33
Resolver.ivyStylePatterns
44
)
55

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

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

1010
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.0")

src/test/scala/uk/gov/hmrc/play/views/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
package uk.gov.hmrc.play
1818

19-
import akka.util.Timeout
19+
import org.apache.pekko.util.Timeout
2020
import org.jsoup.Jsoup
2121
import org.jsoup.nodes.Document
2222
import play.api.test.Helpers.contentAsString

0 commit comments

Comments
 (0)