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