Skip to content

Commit

Permalink
adjust MiMa settings, post-1.1.0 (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue authored Dec 18, 2024
1 parent e9ea530 commit ca33dfb
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
ThisBuild / crossScalaVersions := Seq("2.13.15", "3.3.4")
ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.head

// we can remove this after we ship 1.0.5; see #273 for gory details
import com.typesafe.tools.mima.core._
ThisBuild / mimaBinaryIssueFilters ++= Seq(
ProblemFilters.exclude[IncompatibleSignatureProblem]("*"),
)

Global / cancelable := true
publish / skip := true // in root

lazy val commonSettings: Seq[Setting[_]] =
Seq(scalaModuleAutomaticModuleName := Some("scala.collection.parallel")) ++
ScalaModulePlugin.scalaModuleSettings ++ Seq(
versionPolicyIntention := Compatibility.BinaryCompatible,
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
Compile / compile / scalacOptions --= (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((3, _)) => Seq("-Xlint")
case _ => Seq()
Expand Down

0 comments on commit ca33dfb

Please sign in to comment.