Reputation: 297195
On Maven's documentation of reports, it mentions how one can use the <reportSets>
stuff to select specific report goals. However, there's no mention on how, absent decent documentation, one can find out which goals are report goals and which are not.
Now, when using -X to debug an issue, I did notice that, absent a <reportSets>
section, maven searches for all "report goals" provided by a plugin. Is there any way to easily access that information?
Upvotes: 2
Views: 46
Reputation: 97409
To get the information which goal is report goal and which is not you can simply take a look at the goal list there is list showing which goal is a report goals which is not.
Unfortunately on command line you are right.
Upvotes: 1