Upgrade to Scala 2.13.5 (#30072)

This commit is contained in:
Johan Andrén 2021-03-30 20:57:23 +02:00 committed by GitHub
parent 846359919f
commit c5655a9ce6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
264 changed files with 1071 additions and 538 deletions

View file

@ -28,7 +28,7 @@ object Dependencies {
val jacksonVersion = "2.11.4"
val scala212Version = "2.12.13"
val scala213Version = "2.13.3"
val scala213Version = "2.13.5"
val scala3Version = "3.0.0-RC1"
val reactiveStreamsVersion = "1.0.3"
@ -57,7 +57,7 @@ object Dependencies {
case twoThirteen if twoThirteen.startsWith("2.13") => scala213Version
case twoTwelve if twoTwelve.startsWith("2.12") => scala212Version
case three if three.startsWith("3.0") => scala3Version
case "default" => scala212Version
case "default" => scala213Version
case other =>
throw new IllegalArgumentException(s"Unsupported scala version [$other]. Must be 2.12, 2.13 or 3.0.")
}