mirror of https://github.com/sbt/sbt.git
Update Scala to 2.13.11
This commit is contained in:
parent
2d7db22785
commit
ebbf0617a2
|
|
@ -53,7 +53,7 @@ jobs:
|
|||
JAVA_OPTS: -Xms800M -Xmx2G -Xss6M -XX:ReservedCodeCacheSize=128M -server -Dsbt.io.virtual=false -Dfile.encoding=UTF-8
|
||||
JVM_OPTS: -Xms800M -Xmx2G -Xss6M -XX:ReservedCodeCacheSize=128M -server -Dsbt.io.virtual=false -Dfile.encoding=UTF-8
|
||||
SCALA_212: 2.12.18
|
||||
SCALA_213: 2.13.10
|
||||
SCALA_213: 2.13.11
|
||||
SCALA_3: 3.1.0
|
||||
UTIL_TESTS: "utilCache/test utilControl/test utilInterface/test utilLogging/test utilPosition/test utilRelation/test utilScripted/test utilTracking/test"
|
||||
SBT_LOCAL: false
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import sbt.contraband.ContrabandPlugin.autoImport._
|
|||
object Dependencies {
|
||||
// WARNING: Please Scala update versions in PluginCross.scala too
|
||||
val scala212 = "2.12.18"
|
||||
val scala213 = "2.13.10"
|
||||
val scala213 = "2.13.11"
|
||||
val checkPluginCross = settingKey[Unit]("Make sure scalaVersion match up")
|
||||
val baseScalaVersion = scala212
|
||||
def nightlyVersion: Option[String] =
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
ThisBuild / scalaVersion := "2.13.10"
|
||||
ThisBuild / scalaVersion := "2.13.11"
|
||||
ThisBuild / scalacOptions += "-Ytasty-reader"
|
||||
|
||||
lazy val scala3code = project
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
ThisBuild / scalaVersion := "3.1.3"
|
||||
ThisBuild / scalacOptions += "-Ytasty-reader"
|
||||
|
||||
lazy val scala213 = "2.13.10"
|
||||
lazy val scala213 = "2.13.11"
|
||||
|
||||
lazy val root = (project in file("."))
|
||||
.aggregate(fooApp, fooCore, barApp, barCore)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
ThisBuild / scalaVersion := "2.13.10"
|
||||
ThisBuild / scalaVersion := "2.13.11"
|
||||
|
||||
libraryDependencies += "com.disneystreaming" %% "weaver-cats" % "0.8.3" % Test
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
ThisBuild / scalaVersion := "2.13.10"
|
||||
ThisBuild / scalaVersion := "2.13.11"
|
||||
|
||||
libraryDependencies += "dev.zio" %% "zio-test" % "2.0.2" % Test
|
||||
libraryDependencies += "dev.zio" %% "zio-test-sbt" % "2.0.2" % Test
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
ThisBuild / scalaVersion := "2.13.10"
|
||||
ThisBuild / scalaVersion := "2.13.11"
|
||||
|
||||
Global / serverLog / logLevel := Level.Debug
|
||||
|
||||
|
|
|
|||
|
|
@ -283,7 +283,7 @@ object BuildServerTest extends AbstractServerTest {
|
|||
assert(processing("buildTarget/scalacOptions"))
|
||||
assert(svr.waitForString(10.seconds) { s =>
|
||||
(s contains s""""id":"$id"""") &&
|
||||
(s contains "scala-library-2.13.10.jar")
|
||||
(s contains "scala-library-2.13.11.jar")
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue