gnodet commented on code in PR #954: URL: https://github.com/apache/maven/pull/954#discussion_r1072176566
########## maven-core/src/main/java/org/apache/maven/ReactorReader.java: ########## @@ -237,21 +223,11 @@ private boolean isPackagedArtifactUpToDate(MavenProject project, File packagedAr long outputFileLastModified = Files.getLastModifiedTime(outputFile).toMillis(); if (outputFileLastModified > artifactLastModified) { - File alternative = determineBuildOutputDirectoryForArtifact(project, artifact); - if (alternative != null) { - LOGGER.warn( - "File '{}' is more recent than the packaged artifact for '{}'; using '{}' instead", - relativizeOutputFile(outputFile), - project.getArtifactId(), - relativizeOutputFile(alternative.toPath())); - } else { - LOGGER.warn( - "File '{}' is more recent than the packaged artifact for '{}'; " - + "cannot use the build output directory for this type of artifact", - relativizeOutputFile(outputFile), - project.getArtifactId()); - } - return false; + LOGGER.warn( + "File '{}' is more recent than the packaged artifact for '{}', please run a full `mvn verify` build", Review Comment: Changed my mind. `mvn package` looks better. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org