[ https://issues.apache.org/jira/browse/MNG-7629?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17678253#comment-17678253 ]
ASF GitHub Bot commented on MNG-7629: ------------------------------------- gnodet commented on code in PR #954: URL: https://github.com/apache/maven/pull/954#discussion_r1073601881 ########## maven-core/src/main/java/org/apache/maven/ReactorReader.java: ########## @@ -324,4 +309,130 @@ private static boolean isTestArtifact(Artifact artifact) { return ("test-jar".equals(artifact.getProperty("type", ""))) || ("jar".equals(artifact.getExtension()) && "tests".equals(artifact.getClassifier())); } + + private File find(Artifact artifact) { + Path target = getArtifactPath(artifact); + return Files.isRegularFile(target) ? target.toFile() : null; + } + + /** + * Copy packaged and attached artifacts from this project to the + * project local repository. + * This allow a subsequent build to resume while still being able + * to locate attached artifacts. + * + * @param project the project to copy artifacts + */ + private void installIntoProjectLocalRepository(MavenProject project) { + if (!hasBeenPackagedDuringThisSession(project)) { + return; + } + List<Artifact> artifacts = new ArrayList<>(); + + artifacts.add(RepositoryUtils.toArtifact(new ProjectArtifact(project))); + if (!"pom".equals(project.getPackaging())) { + org.apache.maven.artifact.Artifact mavenMainArtifact = project.getArtifact(); + artifacts.add(RepositoryUtils.toArtifact(mavenMainArtifact)); + } + for (org.apache.maven.artifact.Artifact attached : project.getAttachedArtifacts()) { + artifacts.add(RepositoryUtils.toArtifact(attached)); + } + + for (Artifact artifact : artifacts) { Review Comment: Done > 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)