Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
maven-reporting-exec-1.2
-
None
Description
Currently, following is constructed:
MojoExecution mojoExecution = new MojoExecution( plugin, report.getGoal(), "report:" + report.getGoal() );
The output looks like this:
[INFO] >>> maven-javadoc-plugin:2.9.1:javadoc (report:javadoc) > generate-sources @ apache-maven >>>
report: is always static and :javadoc is duplicated. So, the executionId contains fixed and redundant information. Remove them and make the entire line concise.
The output shall be:
[INFO] >>> maven-javadoc-plugin:2.9.1:javadoc > generate-sources @ apache-maven >>>
This was discovered with MNG-5630.