mirror of https://github.com/sbt/sbt.git
Merge pull request #373 from eed3si9n/wip/6388-take2
Fix binary Scala warning, take 2
This commit is contained in:
commit
23b7d923af
|
|
@ -148,7 +148,7 @@ object IvyScalaUtil {
|
|||
def hasBinVerMismatch =
|
||||
depBinaryVersion != scalaBinaryVersion &&
|
||||
// scala 2.13 is compatible with scala 3.x
|
||||
Seq(depBinaryVersion, scalaBinaryVersion)
|
||||
!Seq(depBinaryVersion, scalaBinaryVersion)
|
||||
.forall(bv => bv.startsWith("3") || bv.startsWith("2.13"))
|
||||
|
||||
def matchesOneOfTheConfigs = dep.getModuleConfigurations exists { scalaVersionConfigs }
|
||||
|
|
|
|||
Loading…
Reference in New Issue