mkarg commented on a change in pull request #421: URL: https://github.com/apache/maven/pull/421#discussion_r558841483
########## File path: maven-core/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java ########## @@ -65,6 +66,12 @@ public File getFile() return project.getArtifact().getFile(); } + /** {@inheritDoc} */ + public Path getPath() + { + return this.getFile() == null ? null : this.getFile().toPath(); + } + 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