mirror of https://github.com/sbt/sbt.git
Merge pull request #7406 from xuwei-k/update-test-scala-versions
update test scala versions
This commit is contained in:
commit
16958769b0
|
|
@ -1,5 +1,5 @@
|
|||
lazy val root = (project in file("."))
|
||||
.settings(
|
||||
name := "delete-target",
|
||||
scalaVersion := "2.12.1"
|
||||
scalaVersion := "2.12.18"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ val Macro = config("macro").hide.extend(Compile)
|
|||
|
||||
lazy val root = (project in file("."))
|
||||
.settings(
|
||||
scalaVersion := "2.12.2",
|
||||
scalaVersion := "2.12.18",
|
||||
|
||||
// Adds a "macro" configuration for macro dependencies.
|
||||
ivyConfigurations.value += Macro,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
scalaVersion := "2.12.9"
|
||||
scalaVersion := "2.12.18"
|
||||
|
||||
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.28"
|
||||
updateOptions := updateOptions.value.withCachedResolution(true)
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@ ThisBuild / useCoursier := false
|
|||
|
||||
lazy val root = (project in file("."))
|
||||
.settings(
|
||||
scalaVersion := "2.12.6",
|
||||
scalaVersion := "2.12.18",
|
||||
externalPom()
|
||||
)
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ val check = inputKey[Unit]("Runs the check")
|
|||
|
||||
lazy val root = (project in file("."))
|
||||
.settings(
|
||||
ThisBuild / scalaVersion := "2.12.6",
|
||||
ThisBuild / scalaVersion := "2.12.18",
|
||||
crossJavaVersions := List("1.8"),
|
||||
|
||||
// read out.txt and see if it starts with the passed in number
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ val check = inputKey[Unit]("Runs the check")
|
|||
|
||||
lazy val root = (project in file("."))
|
||||
.settings(
|
||||
ThisBuild / scalaVersion := "2.12.6",
|
||||
ThisBuild / scalaVersion := "2.12.18",
|
||||
crossJavaVersions := List("1.8", "10"),
|
||||
|
||||
// read out.txt and see if it starts with the passed in number
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
scalaVersion := "2.12.1"
|
||||
scalaVersion := "2.12.18"
|
||||
scalacOptions += "-Xfatal-warnings" // required for the test
|
||||
|
||||
enablePlugins(ScalaUnidocPlugin)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
ThisBuild / scalaVersion := "2.12.16"
|
||||
ThisBuild / scalaVersion := "2.12.18"
|
||||
ThisBuild / semanticdbEnabled := true
|
||||
ThisBuild / semanticdbIncludeInJar := true
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
val scalcheck = "org.scalacheck" %% "scalacheck" % "1.14.0"
|
||||
|
||||
ThisBuild / scalaVersion := "2.12.12"
|
||||
ThisBuild / scalaVersion := "2.12.18"
|
||||
|
||||
lazy val root = (project in file("."))
|
||||
.settings(
|
||||
|
|
|
|||
Loading…
Reference in New Issue