The command $ mvn package site does not work in the current quickstart. Instead the build fails with a missing class from the Doxia Maven plugin (which is indirectly referenced by the latest maven-site-plugin). This appears not to be a problem with the project itself, but with the default (latest) version of the maven-site-plugin. Specifying a version of that and the reporting plugin that is not the latest seems to work.
For example, adding these two additional plugins just before the end of the <build> section fix the problem:
The command
$ mvn package site
does not work in the current quickstart. Instead the build fails with a missing class from the Doxia Maven plugin (which is indirectly referenced by the latest maven-site-plugin). This appears not to be a problem with the project itself, but with the default (latest) version of the maven-site-plugin. Specifying a version of that and the reporting plugin that is not the latest seems to work.For example, adding these two additional plugins just before the end of the
<build>
section fix the problem:These versions were suggested in a stackoverflow answer. I don't know if more recent versions also work.