Skip to content

Commit

Permalink
[MNG-8293] Fix resolution of reactor models (#1783)
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet authored Oct 7, 2024
1 parent b2b868f commit 954eae7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1640,7 +1640,7 @@ ModelSource resolveReactorModel(String groupId, String artifactId, String versio
if (sources != null) {
for (ModelSource source : sources) {
Model model = derive(source).readRawModel();
if (Objects.equals(model.getVersion(), version)) {
if (Objects.equals(getVersion(model), version)) {
return source;
}
}
Expand Down

0 comments on commit 954eae7

Please sign in to comment.