[ https://issues.apache.org/jira/browse/MNG-7629?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17678254#comment-17678254 ]
ASF GitHub Bot commented on MNG-7629: ------------------------------------- gnodet commented on code in PR #954: URL: https://github.com/apache/maven/pull/954#discussion_r1073602143 ########## maven-core/src/main/java/org/apache/maven/ReactorReader.java: ########## @@ -117,18 +105,19 @@ public File findArtifact(Artifact artifact) { } public List<String> findVersions(Artifact artifact) { - String key = ArtifactUtils.versionlessKey(artifact.getGroupId(), artifact.getArtifactId()); - - return Optional.ofNullable(projectsByGA.get(key)).orElse(Collections.emptyList()).stream() - .filter(s -> Objects.nonNull(find(s, artifact))) + return getProjects() + .getOrDefault(artifact.getGroupId(), Collections.emptyMap()) + .getOrDefault(artifact.getArtifactId(), Collections.emptyMap()) + .values() + .stream() + .filter(p -> Objects.nonNull(find(p, artifact))) Review Comment: I've renamed a few methods. > Improve resolution of modules within a multi-module build > --------------------------------------------------------- > > Key: MNG-7629 > URL: https://issues.apache.org/jira/browse/MNG-7629 > Project: Maven > Issue Type: Task > Reporter: Guillaume Nodet > Assignee: Guillaume Nodet > Priority: Major > Fix For: 4.0.0-alpha-4 > > -- This message was sent by Atlassian Jira (v8.20.10#820010)