Use Scalal 2.12.11 (#28754)

This commit is contained in:
Christopher Batey 2020-03-20 08:33:25 +00:00 committed by GitHub
parent 96639c537e
commit 35b4da09dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 13 deletions

View file

@ -3,7 +3,7 @@ language: scala
sudo: false
scala:
- "2.12.9"
- "2.12.11"
- "2.13.1"
before_install: curl -Ls https://git.io/jabba | bash && . ~/.jabba/jabba.sh

View file

@ -24,7 +24,7 @@ object Dependencies {
val protobufJavaVersion = "3.10.0"
val logbackVersion = "1.2.3"
val scala212Version = "2.12.10"
val scala212Version = "2.12.11"
val scala213Version = "2.13.1"
val reactiveStreamsVersion = "1.0.3"
@ -192,11 +192,7 @@ object Dependencies {
Provided.activation // dockerClient needs javax.activation.DataSource in JDK 11+
)
val actorTestkitTyped = l ++= Seq(
Provided.logback,
Provided.junit,
Provided.scalatest,
Test.scalatestJUnit)
val actorTestkitTyped = l ++= Seq(Provided.logback, Provided.junit, Provided.scalatest, Test.scalatestJUnit)
val remoteDependencies = Seq(netty, aeronDriver, aeronClient)
val remoteOptionalDependencies = remoteDependencies.map(_ % "optional")
@ -238,12 +234,7 @@ object Dependencies {
Test.commonsIo,
Test.commonsCodec)
val persistenceQuery = l ++= Seq(
Test.scalatest,
Test.junit,
Test.commonsIo,
Provided.levelDB,
Provided.levelDBNative)
val persistenceQuery = l ++= Seq(Test.scalatest, Test.junit, Test.commonsIo, Provided.levelDB, Provided.levelDBNative)
val persistenceTck = l ++= Seq(
Test.scalatest.withConfigurations(Some("compile")),