You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"org.playframework"%%"play-ws-standalone-json"% version
13
+
)
14
+
15
+
defplayWsDependencies(scalaVersion: String) =
16
+
CrossVersion.partialVersion(scalaVersion) match {
17
+
caseSome((2, 12)) =>
18
+
typesafePlayWS("2.1.10")
19
+
20
+
caseSome((2, 13)) =>
21
+
typesafePlayWS("2.2.0-M3")
22
+
23
+
caseSome((3, 2)) =>
24
+
typesafePlayWS("2.2.0-M2") // Version "2.2.0-M3" was produced by an unstable release: Scala 3.3.0-RC3
25
+
26
+
caseSome((3, 3)) =>
27
+
orgPlayWS("3.0.0") // needs some work because of the akka -> pekko migration (https://pekko.apache.org/docs/pekko/current/project/migration-guides.html)
0 commit comments