3

I am writing a simple listener for Jira 4.4.1 to manage release artifacts creation upon version release. Since it is a listener - I automatically have versionID.

How can I acquire release notes programmatically from within plugin?

Edit: I want to get access to the release notes report generated by Jira from a listener plugin link

Apparently ReleaseNoteManager had this functionality, but it seems deprecated and I can find no documentation about how to use it.

ROMANIA_engineer
  • 54,432
  • 29
  • 203
  • 199
Oleksiy
  • 133
  • 1
  • 7

2 Answers2

1

What you're trying to do seems dubious, because Maven JIRA Plugin hasn't been supported since 1.x. This functionality, flatly, does not appear to exist.

Instead, use Maven Versions Plugin. You can find the documentation to get yourself started here.

MrGomez
  • 23,788
  • 45
  • 72
  • 2
    I do not use maven to build my project. I use ant. I am not sure why are you suggesting maven at all (I have not mentioned it in my question). – Oleksiy Apr 02 '12 at 08:40
0

You may also want to look at maven changes plugin. It supports jira and various other issue management systems.

Raghuram
  • 51,854
  • 11
  • 110
  • 122