Plugin documentation

Goals available:

GoalDescription
inherit:inheritSupport mojo inheritance by merging the local plugin metadata with metadata from dependent plugins. Mojo inheritance is requested using a custom javadoc tag:
...
@extendsPlugin archetype
@goal create
...
By default the current goal is taken as the goal to be extended. To extend a different goal use:
...
@extendsPlugin archetype
@extendsGoal create
@goal create-project
...