Skip to content

Commit 3d1e5f3

Browse files
authored
Merge pull request #87 from xuwei-k/patch-2
remove `CrossVersion.for3Use2_13`
2 parents 0e7658d + 45bef7d commit 3d1e5f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

3.0/async/pekko-examples/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ scalaVersion := "3.3.1"
66
val ScalatraVersion = "3.0.0"
77

88
libraryDependencies ++= Seq(
9-
"org.apache.pekko" %% "pekko-actor" % "1.0.0" cross(CrossVersion.for3Use2_13),
10-
"org.apache.pekko" %% "pekko-http" % "1.0.0" cross(CrossVersion.for3Use2_13),
9+
"org.apache.pekko" %% "pekko-actor" % "1.0.0",
10+
"org.apache.pekko" %% "pekko-http" % "1.0.0",
1111
"com.softwaremill.sttp.client3" %% "core" % "3.9.0",
1212
"org.scalatra" %% "scalatra-jakarta" % ScalatraVersion,
1313
"org.scalatra" %% "scalatra-specs2-jakarta" % ScalatraVersion % Test,

3.0/async/pekko-examples/src/test/scala/com/example/app/MyActorAppSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class MyActorAppSpec extends ScalatraSpec { def is = s2"""
1212
"""
1313

1414
val system = ActorSystem()
15-
val myActor = system.actorOf(Props[MyActor])
15+
val myActor = system.actorOf(Props[MyActor]())
1616

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

0 commit comments

Comments
 (0)