Can you please let me know if there is a way/option of displaying the release date of a version in a Jira project in confluence.
(All our projects in Jira have different versions associated with it, like a0, b0,....Each of these versions are associated with a unique release/due date.)
Is there a way to fetch the custom fields of Jira project and display it in confluence.
We use the JIRA road map macro gadget in Confluence to report on upcoming releases in Confluence. Works nicely and can be done for all projects or by project category
One way is to use the Confluence SQL Plugin with some variation of this query:
select p.pkey, p.pname, v.vname, v.releasedate from project as p, projectversion as v where p.id = v.project order by p.pkey
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.