You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by GitBox <gi...@apache.org> on 2022/07/03 07:48:24 UTC

[GitHub] [maven-reporting-impl] hboutemy commented on a diff in pull request #9: Render with Skins

hboutemy commented on code in PR #9:
URL: https://github.com/apache/maven-reporting-impl/pull/9#discussion_r912445797


##########
src/main/java/org/apache/maven/reporting/AbstractMavenReport.java:
##########
@@ -90,6 +98,27 @@
     @Parameter( property = "outputEncoding", defaultValue = "${project.reporting.outputEncoding}", readonly = true )
     private String outputEncoding;
 
+    /**
+     * The local repository.
+     */
+    @Parameter( defaultValue = "${localRepository}", readonly = true )
+    protected ArtifactRepository localRepository;
+
+    /**
+     * Remote repositories used for the project.
+     */
+    @Parameter( defaultValue = "${project.remoteArtifactRepositories}", readonly = true )
+    protected List<ArtifactRepository> remoteRepositories;
+
+    @Parameter
+    Skin skin;

Review Comment:
   this parameter requires a little description: "the skin to use when doing standalone report, run as direct goal invocation"
   
   and ideally, it would be nice to see in this description the default value



-- 
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-unsubscribe@maven.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org