Merge pull request #8407 from xuwei-k/scala-2-12-21

[1.x] Scala 2.12.21
This commit is contained in:
eugene yokota 2025-12-09 04:51:32 -05:00 committed by GitHub
commit 9d62f5e940
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
105 changed files with 115 additions and 115 deletions

View File

@ -41,7 +41,7 @@ jobs:
env:
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.20
SCALA_212: 2.12.21
UTIL_TESTS: "utilCache/test utilControl/test utilInterface/test utilLogging/test utilPosition/test utilRelation/test utilScripted/test utilTracking/test"
SBT_ETC_FILE: $HOME/etc/sbt/sbtopts
JDK11: adopt@1.11.0-9

View File

@ -48,7 +48,7 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml"
Global / semanticdbEnabled := !(Global / insideCI).value
// Change main/src/main/scala/sbt/plugins/SemanticdbPlugin.scala too, if you change this.
Global / semanticdbVersion := "4.14.1"
Global / semanticdbVersion := "4.14.2"
val excludeLint = SettingKey[Set[Def.KeyedInitialize[_]]]("excludeLintKeys")
Global / excludeLint := (Global / excludeLint).?.value.getOrElse(Set.empty)
Global / excludeLint += componentID

View File

@ -26,7 +26,7 @@ lazy val sbtVersionToRelease = sys.props.getOrElse("sbt.build.version", sys.env.
}))
lazy val scala210 = "2.10.7"
lazy val scala212 = "2.12.20"
lazy val scala212 = "2.12.21"
lazy val scala210Jline = "org.scala-lang" % "jline" % scala210
lazy val jansi = {
if (sbtVersionToRelease startsWith "1.") "org.fusesource.jansi" % "jansi" % "1.12"
@ -34,8 +34,8 @@ lazy val jansi = {
}
lazy val scala212Compiler = "org.scala-lang" % "scala-compiler" % scala212
lazy val scala212Jline = "jline" % "jline" % "2.14.6"
// use the scala-xml version used by the compiler not the latest: https://github.com/scala/scala/blob/v2.12.20/versions.properties
lazy val scala212Xml = "org.scala-lang.modules" % "scala-xml_2.12" % "2.2.0"
// use the scala-xml version used by the compiler not the latest: https://github.com/scala/scala/blob/v2.12.21/versions.properties
lazy val scala212Xml = "org.scala-lang.modules" % "scala-xml_2.12" % "2.3.0"
lazy val sbtActual = "org.scala-sbt" % "sbt" % sbtVersionToRelease
lazy val sbt013ExtraDeps = {

View File

@ -100,7 +100,7 @@ private[sbt] object PluginCross {
VersionNumber(sv) match {
case VersionNumber(Seq(0, 12, _*), _, _) => "2.9.2"
case VersionNumber(Seq(0, 13, _*), _, _) => "2.10.7"
case VersionNumber(Seq(1, 0, _*), _, _) => "2.12.20"
case VersionNumber(Seq(1, 0, _*), _, _) => "2.12.21"
case _ => sys.error(s"Unsupported sbt binary version: $sv")
}
}

View File

@ -27,7 +27,7 @@ object SemanticdbPlugin extends AutoPlugin {
semanticdbEnabled := SysProp.semanticdb,
semanticdbIncludeInJar := false,
semanticdbOptions := List(),
semanticdbVersion := "4.14.1"
semanticdbVersion := "4.14.2"
)
override lazy val projectSettings: Seq[Def.Setting[_]] = Seq(

View File

@ -4,7 +4,7 @@ import sbt.contraband.ContrabandPlugin.autoImport._
object Dependencies {
// WARNING: Please Scala update versions in PluginCross.scala too
val scala212 = "2.12.20"
val scala212 = "2.12.21"
val scala213 = "2.13.18"
val checkPluginCross = settingKey[Unit]("Make sure scalaVersion match up")
val baseScalaVersion = scala212

View File

@ -1,6 +1,6 @@
lazy val check = taskKey[Unit]("")
lazy val compile2 = taskKey[Unit]("")
lazy val scala212 = "2.12.20"
lazy val scala212 = "2.12.21"
lazy val scala213 = "2.13.12"
lazy val root = (project in file("."))

View File

@ -17,7 +17,7 @@
## test + with command or alias
> clean
## for command cross building you do need crossScalaVerions on root
> set root/crossScalaVersions := Seq("2.12.20", "2.13.12")
> set root/crossScalaVersions := Seq("2.12.21", "2.13.12")
> + build
$ exists foo/target/scala-2.12
$ exists foo/target/scala-2.13

View File

@ -1,5 +1,5 @@
scalaVersion := "2.12.20"
crossScalaVersions := List("2.12.20", "2.13.12")
scalaVersion := "2.12.21"
crossScalaVersions := List("2.12.21", "2.13.12")
val setLastModified = taskKey[Unit]("Sets the last modified time for classfiles")
setLastModified := {

View File

@ -1 +1 @@
crossScalaVersions := Seq[String]("2.11.12", "2.12.20")
crossScalaVersions := Seq[String]("2.11.12", "2.12.21")

View File

@ -1,5 +1,5 @@
> ++2.11.12; compile
> ++ 2.12.20 ; compile;
> ++ 2.12.21 ; compile;
> ++ 2.12.20 ; compile
> ++ 2.12.21 ; compile

View File

@ -1,4 +1,4 @@
lazy val scala212 = "2.12.20"
lazy val scala212 = "2.12.21"
lazy val scala213 = "2.13.12"
ThisBuild / crossScalaVersions := Seq(scala212, scala213)

View File

@ -1,4 +1,4 @@
lazy val external = (project in file("."))
.settings(
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
)

View File

@ -13,7 +13,7 @@ $ exists lib/target/scala-2.13
# test safe switching
> clean
> ++ 2.12.20 -v compile
> ++ 2.12.21 -v compile
$ exists lib/target/scala-2.12
-$ exists lib/target/scala-2.13
$ exists sbt-foo/target/scala-2.12
@ -23,7 +23,7 @@ $ exists ref/target/scala-2.12
# test safe switching
> clean
> ++ 2.12.20 -v libProj/compile
> ++ 2.12.21 -v libProj/compile
$ exists lib/target/scala-2.12
-$ exists lib/target/scala-2.13
@ -37,7 +37,7 @@ $ exists lib/target/scala-2.12
# Test ++ leaves crossScalaVersions unchanged
> clean
> ++2.12.20
> ++2.12.21
> +extrasProj/compile
$ exists extras/target/scala-2.13
$ exists extras/target/scala-2.12

View File

@ -1,14 +1,14 @@
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
lazy val core = project
.settings(
crossScalaVersions := Seq("2.12.20", "3.3.1", "3.5.1")
crossScalaVersions := Seq("2.12.21", "3.3.1", "3.5.1")
)
lazy val subproj = project
.dependsOn(core)
.settings(
crossScalaVersions := Seq("2.12.20", "3.5.1"),
crossScalaVersions := Seq("2.12.21", "3.5.1"),
// a random library compiled against Scala 3.1
libraryDependencies += "org.http4s" %% "http4s-core" % "0.23.28"
)

View File

@ -1,4 +1,4 @@
lazy val scala212 = "2.12.20"
lazy val scala212 = "2.12.21"
lazy val scala213 = "2.13.12"
ThisBuild / scalaVersion := scala212

View File

@ -2,7 +2,7 @@ val newContents = "bbbbbbbbb"
val rootContentFile = "root.txt"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -5,8 +5,8 @@ import Parsers._
lazy val root = (project in file("."))
.settings(
crossPaths := false,
crossScalaVersions := Seq("2.12.20", "2.13.12"),
scalaVersion := "2.12.20",
crossScalaVersions := Seq("2.12.21", "2.13.12"),
scalaVersion := "2.12.21",
Compile / doc / scalacOptions += "-Xfatal-warnings",
commands += Command.command("excludeB") { s =>
val impl = """val src = (sources in Compile).value; src.filterNot(_.getName.contains("B"))"""

View File

@ -1,6 +1,6 @@
val buildInfo = taskKey[Seq[File]]("generates the build info")
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -19,4 +19,4 @@ val dynamicTask = taskKey[Unit]("dynamic input task")
dynamicTask := { println("not yet et") }
crossScalaVersions := "2.11.12" :: "2.12.20" :: Nil
crossScalaVersions := "2.11.12" :: "2.12.21" :: Nil

View File

@ -37,4 +37,4 @@
> ++ 2.11.12 compile; setStringValue bar; checkStringValue bar
> ++2.12.20 compile; setStringValue foo; checkStringValue foo
> ++2.12.21 compile; setStringValue foo; checkStringValue foo

View File

@ -1,5 +1,5 @@
lazy val root = (project in file("."))
.settings(
name := "delete-target",
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
)

View File

@ -1,6 +1,6 @@
name := "my-project"
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
semanticdbIncludeInJar := true

View File

@ -8,7 +8,7 @@ lazy val CustomArtifact = config("custom-artifact")
val recordPreviousIterations = taskKey[Unit]("Record previous iterations.")
val checkIterations = inputKey[Unit]("Verifies the accumulated number of iterations of incremental compilation.")
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / pushRemoteCacheTo := Some(
MavenCache("local-cache", (ThisBuild / baseDirectory).value / "r")
)

View File

@ -2,7 +2,7 @@ ThisBuild / turbo := true
val akkaTest = (project in file(".")).settings(
name := "akka-test",
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5.16",
"com.lihaoyi" %% "utest" % "0.6.6" % "test"

View File

@ -13,7 +13,7 @@ def wrap(task: InputKey[Unit]): Def.Initialize[Task[Unit]] =
ThisBuild / turbo := true
val root = (project in file(".")).settings(
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-h",
sourceDirectory.value.toPath.resolve("main/native/include").toString),
libraryDependencies += "com.lihaoyi" %% "utest" % "0.6.6" % "test",

View File

@ -2,7 +2,7 @@ ThisBuild / turbo := true
val snapshot = (project in file(".")).settings(
name := "mismatched-libraries",
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
libraryDependencies ++= Seq("com.lihaoyi" %% "utest" % "0.6.6" % "test"),
testFrameworks := Seq(TestFramework("utest.runner.Framework")),
resolvers += "Local Maven" at file("libraries/ivy").toURI.toURL.toString,

View File

@ -1,6 +1,6 @@
val layeringStrategyTest = (project in file(".")).settings(
name := "layering-strategy-test",
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
organization := "sbt",
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.5.16",
)

View File

@ -2,7 +2,7 @@ name := "Simple Project"
version := "1.0"
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.4.3"

View File

@ -2,7 +2,7 @@ ThisBuild / turbo := true
val utestTest = (project in file(".")).settings(
name := "utest-test",
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.6.6" % "test"
),

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file(".")).
settings(

View File

@ -5,7 +5,7 @@ val Macro = config("macro").hide.extend(Compile)
lazy val root = (project in file("."))
.settings(
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
// Adds a "macro" configuration for macro dependencies.
ivyConfigurations.value += Macro,

View File

@ -1,4 +1,4 @@
> set scalaVersion := "2.13.12"
> check213
> set scalaVersion := "2.12.20"
> set scalaVersion := "2.12.21"
> check212

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies ++= Seq(
"com.novocode" % "junit-interface" % "0.5" % Test,

View File

@ -1,4 +1,4 @@
lazy val scala212 = "2.12.20"
lazy val scala212 = "2.12.21"
lazy val scala213 = "2.13.12"
ThisBuild / scalaVersion := scala212

View File

@ -1 +1 @@
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"

View File

@ -1,4 +1,4 @@
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.28"
updateOptions := updateOptions.value.withCachedResolution(true)

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.7.2",

View File

@ -1,5 +1,5 @@
// ThisBuild / useCoursier := false
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / organization := "org.example"
ThisBuild / version := "0.1"

View File

@ -6,7 +6,7 @@ lazy val check = taskKey[Unit]("")
lazy val checkArtifact = taskKey[Unit]("")
ThisBuild / useCoursier := false
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"

View File

@ -1,6 +1,6 @@
import xsbti.AppConfiguration
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
// TTL of Coursier is 24h
ThisBuild / useCoursier := false

View File

@ -3,7 +3,7 @@ lazy val check = taskKey[Unit]("Runs the check")
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
val junit = "junit" % "junit" % "4.13.1"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / csrCacheDirectory := (ThisBuild / baseDirectory).value / "coursier-cache"
def commonSettings: Seq[Def.Setting[_]] =

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val check = taskKey[Unit]("")

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies ++= List(
"org.webjars.npm" % "randomatic" % "1.1.7",
"org.webjars.npm" % "is-odd" % "2.0.0",

View File

@ -2,6 +2,6 @@ ThisBuild / useCoursier := false
lazy val root = (project in file("."))
.settings(
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
externalPom()
)

View File

@ -1,7 +1,7 @@
ThisBuild / useCoursier := false
name := "force-update-period"
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
libraryDependencies += "log4j" % "log4j" % "1.2.16" % "compile"
autoScalaLibrary := false

View File

@ -1 +1 @@
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"

View File

@ -1,5 +1,5 @@
ThisBuild / organization := "com.example"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / csrCacheDirectory := (ThisBuild / baseDirectory).value / "coursier-cache"
def customIvyPaths: Seq[Def.Setting[_]] = Seq(

View File

@ -1,5 +1,5 @@
ThisBuild / organization := "com.example"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
// TTL is 24h so we can't detect the change
ThisBuild / useCoursier := false

View File

@ -4,7 +4,7 @@ val check = inputKey[Unit]("Runs the check")
lazy val root = (project in file("."))
.settings(
ThisBuild / scalaVersion := "2.12.20",
ThisBuild / scalaVersion := "2.12.21",
crossJavaVersions := List("1.8"),
// read out.txt and see if it starts with the passed in number

View File

@ -4,7 +4,7 @@ val check = inputKey[Unit]("Runs the check")
lazy val root = (project in file("."))
.settings(
ThisBuild / scalaVersion := "2.12.20",
ThisBuild / scalaVersion := "2.12.21",
crossJavaVersions := List("1.8", "10"),
// read out.txt and see if it starts with the passed in number

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val check = taskKey[Unit]("")

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
name := "hello"
enablePlugins(JavaAppPackaging)

View File

@ -1,4 +1,4 @@
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
scalacOptions += "-Xfatal-warnings" // required for the test
enablePlugins(ScalaUnidocPlugin)

View File

@ -1,3 +1,3 @@
name := "projA"
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"

View File

@ -1,7 +1,7 @@
val baseSbt = "1."
val buildCrossList = List("2.10.7", "2.11.12", "2.12.20")
scalaVersion in ThisBuild := "2.12.20"
val buildCrossList = List("2.10.7", "2.11.12", "2.12.21")
scalaVersion in ThisBuild := "2.12.21"
crossScalaVersions in ThisBuild := buildCrossList
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")

View File

@ -1,6 +1,6 @@
val unpackage = TaskKey[Unit]("unpackage")
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / trackInternalDependencies := TrackLevel.NoTracking
lazy val root = (project in file("."))

View File

@ -1,6 +1,6 @@
lazy val root = project.in(file("."))
.enablePlugins(SbtPlugin)
.settings(
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
scalacOptions ++= Seq("-Xfatal-warnings", "-Xlint")
)

View File

@ -1,6 +1,6 @@
lazy val root = project.in(file("."))
.settings(
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
sbtPlugin := true,
scalacOptions ++= Seq("-Xfatal-warnings", "-Xlint")
)

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbIncludeInJar := true

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
import sbt.internal.CommandStrings.{ inspectBrief, inspectDetailed }
import sbt.internal.Inspect

View File

@ -1,6 +1,6 @@
val scalcheck = "org.scalacheck" %% "scalacheck" % "1.14.0"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -3,7 +3,7 @@ lazy val check = taskKey[Unit]("")
lazy val common = Def.settings(
// 2.12.x uses Zinc's compiler bridge
scalaVersion := "2.12.20",
scalaVersion := "2.12.21",
)
// use `runMain` instead of `run` because discoveredMainClasses return empty

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val dep = project

View File

@ -1,4 +1,4 @@
> ++2.12.20!
> ++2.12.21!
$ copy-file changes/B.scala B.scala

View File

@ -1,3 +1,3 @@
# A.scala needs B.scala, it would be in source list
> ++2.12.20!
> ++2.12.21!
> compile

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val paradiseVersion = "2.1.1"
val commonSettings = Seq(

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val defaultSettings = Seq(
libraryDependencies += scalaVersion("org.scala-lang" % "scala-reflect" % _ ).value

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val defaultSettings = Seq(
libraryDependencies += scalaVersion("org.scala-lang" % "scala-reflect" % _ ).value

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val defaultSettings = Seq(
libraryDependencies += scalaVersion("org.scala-lang" % "scala-reflect" % _ ).value

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val defaultSettings = Seq(
libraryDependencies += scalaVersion("org.scala-lang" % "scala-reflect" % _ ).value

View File

@ -1,6 +1,6 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val foo = settingKey[Seq[String]]("foo")
val checkFoo = inputKey[Unit]("check contents of foo")

View File

@ -1,6 +1,6 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,6 +1,6 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,7 +1,7 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.2.2"
val munit = "org.scalameta" %% "munit" % "0.7.22"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies += scalatest % Test
libraryDependencies += munit % Test

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,7 +1,7 @@
import Tests._
import Defaults._
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val check = taskKey[Unit]("Check that tests are executed in parallel")
lazy val root = (project in file("."))

View File

@ -1,5 +1,5 @@
val specs = "org.specs2" %% "specs2-core" % "4.3.4"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val TestATypeTag = Tags.Tag("TestA")
val TestBTypeTag = Tags.Tag("TestB")

View File

@ -1,5 +1,5 @@
val specs = "org.specs2" %% "specs2-core" % "4.3.4"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
Global / concurrentRestrictions := Seq(Tags.limitAll(4))
libraryDependencies += specs % Test

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies += "org.scala-sbt" % "test-interface" % "1.0"

View File

@ -11,7 +11,7 @@ val scalaxml = "org.scala-lang.modules" %% "scala-xml" % "1.1.1"
def groupId(idx: Int) = "group_" + (idx + 1)
def groupPrefix(idx: Int) = groupId(idx) + "_file_"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / organization := "org.example"
lazy val root = (project in file("."))

View File

@ -1,6 +1,6 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
fork := true
libraryDependencies += scalatest % Test

View File

@ -1,7 +1,7 @@
// Global / cacheStores := Seq.empty
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
scalaVersion := "2.12.20"
scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,5 +1,5 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
val specs = "org.specs2" %% "specs2-core" % "4.3.4"

View File

@ -14,7 +14,7 @@ val nestedSuitesReportFile = "target/test-reports/TEST-my.scalatest.MyNestedSuit
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
val junitinterface = "com.novocode" % "junit-interface" % "0.11"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file(".")).
settings(

View File

@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val munit = "org.scalameta" %% "munit" % "0.7.22"

View File

@ -1,6 +1,6 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,6 +1,6 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,7 +1,7 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
val scalaxml = "org.scala-lang.modules" %% "scala-xml" % "1.1.1"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.settings(

View File

@ -1,6 +1,6 @@
val scalcheck = "org.scalacheck" %% "scalacheck" % "1.14.0"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / version := "0.0.1"
ThisBuild / organization := "org.catastrophe"

View File

@ -1,5 +1,5 @@
val specsJunit = "org.specs2" %% "specs2-junit" % "4.3.4"
val junitinterface = "com.novocode" % "junit-interface" % "0.11"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies += junitinterface % Test
libraryDependencies += specsJunit % Test

View File

@ -1,5 +1,5 @@
val scalcheck = "org.scalacheck" %% "scalacheck" % "1.14.0"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
Test / parallelExecution := false
libraryDependencies += scalcheck % Test

View File

@ -1,3 +1,3 @@
val specs = "org.specs2" %% "specs2-core" % "4.3.4"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies += specs % Test

View File

@ -3,7 +3,7 @@ import sbt.internal.inc.ScalaInstance
lazy val OtherScala = config("other-scala").hide
lazy val junitinterface = "com.novocode" % "junit-interface" % "0.11"
lazy val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.5.17"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
lazy val root = (project in file("."))
.configs(OtherScala)

View File

@ -1,6 +1,6 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
ThisBuild / organization := "com.example"
ThisBuild / version := "0.0.1-SNAPSHOT"

View File

@ -1,3 +1,3 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies += scalatest

View File

@ -1,4 +1,4 @@
val scalatest = "org.scalatest" %% "scalatest" % "3.0.5"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies += scalatest
Test / testOptions += Tests.Argument("-C", "custom.CustomReporter")

View File

@ -1,4 +1,4 @@
val specs = "org.specs2" %% "specs2-core" % "4.3.4"
ThisBuild / scalaVersion := "2.12.20"
ThisBuild / scalaVersion := "2.12.21"
libraryDependencies += specs % Test

Some files were not shown because too many files have changed in this diff Show More