Skip to content

Commit

Permalink
Drop 2.11 from build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
valencik authored and tgodzik committed Dec 13, 2023
1 parent d39266f commit 04a0f25
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ def scala213 = "2.13.12"

def scala212 = "2.12.18"

def scala211 = "2.11.12"
def scala3 = "3.1.2"
def junitVersion = "4.13.2"
def gcp = "com.google.cloud" % "google-cloud-storage" % "2.26.1"
Expand Down Expand Up @@ -51,7 +50,7 @@ addCommandAlias(
s"; ++$scala212 ; scalafixEnable ; scalafix --check ; test:scalafix --check"
)
val isPreScala213 = Set[Option[(Long, Long)]](Some((2, 11)), Some((2, 12)))
val scala2Versions = List(scala213, scala212, scala211)
val scala2Versions = List(scala213, scala212)

val scala3Versions = List(scala3)
val allScalaVersions = scala2Versions ++ scala3Versions
Expand Down Expand Up @@ -163,7 +162,7 @@ val sharedJSConfigure: Project => Project =

val sharedNativeSettings: List[Def.Setting[_]] = List(
skipIdeaSettings,
crossScalaVersions := allScalaVersions.filterNot(_ == scala211)
crossScalaVersions := allScalaVersions
)
val sharedNativeConfigure: Project => Project =
_.disablePlugins(ScalafixPlugin, MimaPlugin)
Expand Down

0 comments on commit 04a0f25

Please sign in to comment.