Skip to content

Commit be35e5e

Browse files
committed
Merge branch '3.2.x'
Closes gh-41473
2 parents b3a882c + 7398c6c commit be35e5e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

buildSrc/src/main/java/org/springframework/boot/build/bom/bomr/version/ArtifactVersionDependencyVersion.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ private boolean isSameMinor(ArtifactVersionDependencyVersion other) {
8181

8282
@Override
8383
public boolean isUpgrade(DependencyVersion candidate, boolean movingToSnapshots) {
84+
if (candidate instanceof MultipleComponentsDependencyVersion) {
85+
return super.isUpgrade(candidate, movingToSnapshots);
86+
}
8487
if (!(candidate instanceof ArtifactVersionDependencyVersion)) {
8588
return false;
8689
}

0 commit comments

Comments
 (0)