Skip to content

Commit

Permalink
remove obsolete filter
Browse files Browse the repository at this point in the history
this was blocking upgrades to sbt-version-policy 3+
  • Loading branch information
bjaglin committed Feb 10, 2024
1 parent a36f47b commit 8d0336d
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -248,21 +248,6 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
)

override def projectSettings: Seq[Def.Setting[_]] = List(
// https://github.com/scalacenter/scalafix/pull/1819#issuecomment-1636118496
versionPolicyFindDependencyIssues ~= { issues =>
issues.map { case (module, report) =>
val Seq(backward, forward) =
Seq(report.backwardStatuses, report.forwardStatuses)
.map { statuses =>
statuses.filterNot { case ((org, artifact), _) =>
Seq(scalametaFastparse, geny)
.map(mod => (mod.organization, mod.name))
.contains((org, artifact.split('_').head))
}
}
(module, DependencyCheckReport(backward, forward))
}
},
// Prevent issues with scalatest serialization
Test / classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat,
Test / testWindows := (Test / testOnly)
Expand Down

0 comments on commit 8d0336d

Please sign in to comment.