With ant we can do: ant -p
and get a nice list of applicable targets for the project. I've looked but don't see anything similar with Maven. There are -h and -g, but these don't help or are targeted as well as the ant projecthelp task.
If there really isn't something similar, perhaps its just a simple matter of adding one to the maven.xml file. Something like:
The use would be: maven projecthelpCode:<goal name="projecthelp" description="show the project specific goals"> <echo> maven goals: preparedocs ................. o Extra preparation for the documentation docclean ...................... o Delete temporary and distribution directories for docs docpdf ......................... o Compile reference documentation to pdf dochtml ....................... o Compile reference documentation to chunked html dochtmlsingle ............... o Compile reference documentation to single html refdoc .......................... o Generate and copy reference documentation </echo> </goal>
----
Josef Betancourt


