user16655
user16655

Reputation: 1941

Jira report to pdf in maven

I have a Jira report generated in Maven with the changes plugin, but I want to be able to put this report in a generated PDF file. Unfortunately the maven-pdf-plugin isn't able to generate reports with Maven 3, and it doesn't seem like they are fixing this issue. Are there any other options that achieve the same result?

Upvotes: 1

Views: 147

Answers (1)

dur
dur

Reputation: 17009

My work-around is:

  1. Generate Docbook xml file with changes:announcement-generate an a custom velocity template.
  2. Generate PDF file with docbkx-maven-plugin.

Upvotes: 1

Related Questions