How to add 'Plugins' drop down menu item

Akira Tsuchiya
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 17, 2012

I added the lines below in the atlassian-plugin.xml expecting that the "AAA" menu item appears

in the Administration Plugins drop down menu under the 'Source Control'.

But it does not.

What steps should I take?

<web-item key="AAA" section="admin_plugins_menu/source_control">
<label key="AAA"/>
</web-item>

2 answers

0 votes
Akira Tsuchiya
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 18, 2012

I found that the problem is due to the JIRA version of 5.0.

Admin Plugins Menu cannot be added to JIRA 5.0.

On the latest JIRA 5.1.5, the same plugin works fine.

0 votes
Former user September 18, 2012

Try something like this:

<web-item key="AAA" section="admin_plugins_menu/source_control" weight="9999">
<label key="AAA"/>
<link linkId="AAA_link">/secure/admin/aaa.jspa</link>
</web-item>

This should provide a link to /secure/admin/aaa.jspa in the drop down.

Suggest an answer

Log in or Sign up to answer