Where is the maven-rpm-plugin documentation after code disappearance

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?

+7
java maven maven-plugin rpm
source share
3 answers

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.

+7
source share

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

+2
source share

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)

0
source share

All Articles