File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 1
1
ThisBuild / crossScalaVersions := Seq (" 2.13.15" , " 3.3.4" )
2
2
ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.head
3
3
4
- // we can remove this after we ship 1.0.5; see #273 for gory details
5
- import com .typesafe .tools .mima .core ._
6
- ThisBuild / mimaBinaryIssueFilters ++= Seq (
7
- ProblemFilters .exclude[IncompatibleSignatureProblem ](" *" ),
8
- )
9
-
10
4
Global / cancelable := true
11
5
publish / skip := true // in root
12
6
13
7
lazy val commonSettings : Seq [Setting [_]] =
14
8
Seq (scalaModuleAutomaticModuleName := Some (" scala.collection.parallel" )) ++
15
9
ScalaModulePlugin .scalaModuleSettings ++ Seq (
16
- versionPolicyIntention := Compatibility .BinaryCompatible ,
10
+ versionPolicyIntention := Compatibility .BinaryAndSourceCompatible ,
17
11
Compile / compile / scalacOptions --= (CrossVersion .partialVersion(scalaVersion.value) match {
18
12
case Some ((3 , _)) => Seq (" -Xlint" )
19
13
case _ => Seq ()
You can’t perform that action at this time.
0 commit comments