I feel bad if I ask this question, but google does not help. Can someone tell me where the documentation for maven-rpm-plugin is after the code-code disappears?
Maven plugins on Codehaus are ported to http://www.mojohaus.org . For the RPM plugin, the link is http://www.mojohaus.org/rpm-maven-plugin/ , but it does not seem to have been ported yet.
Now his new home is in this project on GitHub.
Until the site is updated again, you can see the documentation source (almost plain text) at https://github.com/mojohaus/rpm-maven-plugin/tree/master/src/site/apt
I managed to generate maven plugin site documents with the following:
mvn site:site -Dmaven.test.skip -Dmaven.javadoc.skip
Documents are created in target / site.
(running jdk 1.8.0_25 on linux)