Skip to content

Commit 498ae80

Browse files
author
George Leontiev
committed
Drop 2.11
1 parent fe52e0c commit 498ae80

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

build.sbt

+3-10
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ val isScala3 = Def.setting(
77
lazy val buildSettings = Def.settings(
88
organization := "info.folone",
99
scalaVersion := Scala212,
10-
crossScalaVersions := Seq(Scala212, "2.11.12", "2.13.10", "3.2.1"),
10+
crossScalaVersions := Seq(Scala212, "2.13.10", "3.2.1"),
1111
(Compile / doc / scalacOptions) ++= {
1212
val base = (LocalRootProject / baseDirectory).value.getAbsolutePath
1313
if (isScala3.value) {
@@ -74,17 +74,10 @@ lazy val standardSettings = Def.settings(
7474
"org.apache.poi" % "poi" % poiVersion,
7575
"org.apache.poi" % "poi-ooxml" % poiVersion,
7676
"org.scalaz" %% "scalaz-effect" % scalazVersion,
77-
"org.scalaz" %% "scalaz-scalacheck-binding" % scalazVersion % "test"
77+
"org.scalaz" %% "scalaz-scalacheck-binding" % scalazVersion % "test",
78+
"org.specs2" %% "specs2-scalacheck" % "4.19.0" % "test"
7879
)
7980
},
80-
libraryDependencies += {
81-
scalaBinaryVersion.value match {
82-
case "2.11" =>
83-
"org.specs2" %% "specs2-scalacheck" % "4.10.6" % "test"
84-
case _ =>
85-
"org.specs2" %% "specs2-scalacheck" % "4.19.0" % "test"
86-
}
87-
},
8881
conflictWarning := {
8982
if (scalaBinaryVersion.value == "3") {
9083
ConflictWarning("warn", Level.Warn, false)

0 commit comments

Comments
 (0)