Skip to content

Commit

Permalink
Merge pull request #87 from xuwei-k/patch-2
Browse files Browse the repository at this point in the history
remove `CrossVersion.for3Use2_13`
  • Loading branch information
magnolia-k authored Nov 6, 2023
2 parents 0e7658d + 45bef7d commit 3d1e5f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 3.0/async/pekko-examples/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ scalaVersion := "3.3.1"
val ScalatraVersion = "3.0.0"

libraryDependencies ++= Seq(
"org.apache.pekko" %% "pekko-actor" % "1.0.0" cross(CrossVersion.for3Use2_13),
"org.apache.pekko" %% "pekko-http" % "1.0.0" cross(CrossVersion.for3Use2_13),
"org.apache.pekko" %% "pekko-actor" % "1.0.0",
"org.apache.pekko" %% "pekko-http" % "1.0.0",
"com.softwaremill.sttp.client3" %% "core" % "3.9.0",
"org.scalatra" %% "scalatra-jakarta" % ScalatraVersion,
"org.scalatra" %% "scalatra-specs2-jakarta" % ScalatraVersion % Test,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class MyActorAppSpec extends ScalatraSpec { def is = s2"""
"""

val system = ActorSystem()
val myActor = system.actorOf(Props[MyActor])
val myActor = system.actorOf(Props[MyActor]())

addServlet(new MyActorApp(system, myActor), "/*")

Expand Down

0 comments on commit 3d1e5f3

Please sign in to comment.