1

What does the rpm-maven-plugin plugin require to build an rpm?

What command line utilities and/or other programs need to be installed?

Karol Dowbecki
  • 43,645
  • 9
  • 78
  • 111
PaulJ
  • 13
  • 3

1 Answers1

0

Looking at the rpm-maven-plugin source code it calls a number of Linux tools:

  • rpm
  • rpmbuild
  • rpm2cpio
  • expect
  • mkdir
  • sh

Above list is not complete. I don't believe this is documented and tools will depend on plugin goal e.g. rpm2cpio is used only by unpack goal.

Karol Dowbecki
  • 43,645
  • 9
  • 78
  • 111
  • Thanks! Yeah I couldn't find anything other that it requiring java 1.6 and maven 2.2.1 on the website. – PaulJ Oct 31 '18 at 17:40
  • Also the source code link returned a 404 error for me... Should it be just https://github.com/mojohaus/rpm-maven-plugin/ ? – PaulJ Oct 31 '18 at 17:42