Michael Osipov opened MSHARED-335 and commented
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.
Affects: maven-reporting-exec-1.2
Issue Links:
Michael Osipov opened MSHARED-335 and commented
Currently, following is constructed:
The output looks like this:
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:
This was discovered with MNG-5630.
Affects: maven-reporting-exec-1.2
Issue Links:
MSITE-720 upgrade maven-reporting-exec to 1.2
MNG-5630 improve display of forked executions