mkarg commented on a change in pull request #421: URL: https://github.com/apache/maven/pull/421#discussion_r558841506
########## File path: maven-core/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java ########## @@ -120,6 +127,12 @@ public void setFile( File destination ) project.getArtifact().setFile( destination ); } + /** {@inheritDoc} */ + public void setPath( Path path ) + { + this.setFile( path == null ? null : path.toFile() ); + } + Review comment: Yes, implicitly, as this class extends `DefaultArtifact`. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org