Skip to content

Commit

Permalink
Upgrade to Play 3.0
Browse files Browse the repository at this point in the history
Includes switch from Akka to Pekko
  • Loading branch information
davidfurey committed Mar 12, 2024
1 parent 78b4e1f commit f7de02e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions atom-manager-play-lib/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import BuildVars._
name := "atom-manager-play"

libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % playVersion,
"org.playframework" %% "play" % playVersion,
"com.gu" %% "content-atom-model" % contentAtomVersion,
"org.scalatestplus.play" %% "scalatestplus-play" % "6.0.1" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test,
"com.amazonaws" % "aws-java-sdk-dynamodb" % awsVersion,
"org.mockito" % "mockito-core" % mockitoVersion % Test,
"com.typesafe.play" %% "play-test" % playVersion % Test,
"org.playframework" %% "play-test" % playVersion % Test,
guice
)
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package com.gu.atom.play

import java.util.Date
import javax.inject.{Inject, Singleton}
import akka.actor.{Actor, ActorRef, ActorSystem, Props}
import akka.pattern.ask
import akka.util.Timeout
import org.apache.pekko.actor.{Actor, ActorRef, ActorSystem, Props}
import org.apache.pekko.pattern.ask
import org.apache.pekko.util.Timeout
import com.gu.atom.data._
import com.gu.atom.play.ReindexActor._
import com.gu.atom.publish._
Expand Down
2 changes: 1 addition & 1 deletion project/BuildVars.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ object BuildVars {
lazy val awsVersion = "1.11.1034"
lazy val contentAtomVersion = "4.0.0"
lazy val scroogeVersion = "22.1.0"
lazy val playVersion = "2.9.1"
lazy val playVersion = "3.0.2"
lazy val mockitoVersion = "4.11.0"
}

0 comments on commit f7de02e

Please sign in to comment.