We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e3720a commit be30eb5Copy full SHA for be30eb5
modules/core/src/main/scala/org/scalasteward/core/repoconfig/UpdatesConfig.scala
@@ -174,12 +174,11 @@ object UpdatesConfig {
174
private[this] def satisfyUpdatePattern(
175
targetUpdatePattern: UpdatePattern,
176
comparedUpdatePatternsByArtifact: Map[Option[String], List[UpdatePattern]]
177
- ): Boolean = {
+ ): Boolean =
178
comparedUpdatePatternsByArtifact.get(targetUpdatePattern.artifactId).exists { matchedVersions =>
179
// For simplicity I'm using direct equals here between versions. Feel free to make it more advanced
180
matchedVersions.exists(up => up.version.isEmpty || up.version === targetUpdatePattern.version)
181
}
182
- }
183
184
// Strategy: union
185
private[repoconfig] def mergeIgnore(
0 commit comments