Daniel C. Sobral
Daniel C. Sobral

Reputation: 297195

How do I know which goals of a maven plugin are report goals?

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

Answers (1)

khmarbaise
khmarbaise

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.

enter image description here

Unfortunately on command line you are right.

Upvotes: 1

Related Questions