JIRA Board Plugin development - jira

I want to create custom JIRA board plugin.
Is this possible at all?
I went through https://developer.atlassian.com but I can't find anything useful.

Here is a list of addon types you can create for JIRA standalone:
https://developer.atlassian.com/display/JIRADEV/JIRA+Plugin+Module+Types
I believe that you want to create a gadget for a JIRA board:
https://developer.atlassian.com/display/GADGETS/Packaging+your+Gadget+as+an+Atlassian+Plugin

Related

How to link other JIRA dashboards to a central dashboard?

I have several dashboards in JIRA and want to create a central one where there is a filter or gadget that will display links to the other dashboards. Is this possible?
You may save all of these dashboards' URLs and show them inside a gadget in your main dashboard.
Let's say one of your "other dashboard"s link is: your-jira-url.com/secure/Dashboard.jspa?selectPageId=10000
Then, you can add a new gadget (like Text plugin which can show HTML) and add following HTML in that gadget:
Link to the other dashboard
However, Text plugin is not enabled default because of the security issues. You may find the details on Atlassian documentation.
Also, as an alternative, you may try HTML for Jira plugin, or you may find some free alternatives from Marketplace.
I found a way to accomplish this. You can embed it in a issue ie the description field and use a filter to display that field of that issue

Jira create link between custom issues

I'm creating custom JIRA configurations OnDemand.
I want to configure two issues, called TestPlan and TestPlanRun. I want to have a link that shows that TestPlanRun is related to TestRun, it is obvious that I want to have multiple TestPlanRuns for TestRun.
I did not succeed to do it with Jira admin interface.
Can you help me? or advise some good TestPlan/TestPlanRun/TestCase/TestCaseRun workflow
in JIRA OnDemand marketplace?
Thanks
There's a comment about this at https://confluence.atlassian.com/display/AOD/Restricted+Functions+in+Atlassian+OnDemand?focusedCommentId=589366653#comment-589366653

How to connect Jira and Gerrit

I am using Gerrit and Jira. I want to connect with gerrit to Jira. When I review the code and comment something it will automatically update the jira comment as well. How to do this?
In your gerrit.config file try this:
[commentlink "jira"]
match = ([A-Z]+-[0-9]+)
link = http://your.jirs_side.net/browse/$1
Here's more information regarding the commentlink section.
Via this link you will find a list of several official gerrit plugins such as:
hooks-jira : Plugin to integrate with Atlassian JIRA
its-jira : Plugin to integrate with Atlassian JIRA. New project for 'plugins/hooks-jira'.
I personally use jirret, which is easy to understand and modify
I think you should use a plugin to connect Jira and gerrit. You can download a plugin by using below link.
https://marketplace.atlassian.com/plugins/com.meetme.plugins.jira.gerrit-plugin

Worklog gadget for JIRA

Is there an ability to create JIRA gadget that shows my total month worklog for 2 projects?
Or you can create your own plugin with required gadgets using this book: "JIRA 5.x Development Cookbook" by Jobin Kuruvilla. It was useful for me
You can do this Tempo. First create a saved search for your two projects. Then view them in the Advanced Timesheet.

JIRA 3.13 dashboard show ticket with specific columns

I am using JIRA 3.13, I want to show list of tickets (based on a certain filter) in the dashboard with a column of my choice. For example, I want to show the ticket name, description, and resolution date (or a column of my choice). Is this possible? I use "Show saved Filter", the one that came with JIRA, but it does not allow me to do any customization.
Does anyone has a solution of how to have this showed in JIRA dashboard? Do I need to install a certain for this? Is it free? How do I install it?
Thanks all for the help!
There is a paid portlet that we can use to do this. The portlet is called "Jira Show Saved Filter With Columns" made by jPlugs.com. We have to pay ~$200.
Installation is pretty simple but requires to bring down JIRA (restart). Anyway, the steps is:
1. Put the jar file in WEB-INF/lib
2. Restart JIRA
The company offer 30 days trial. In order to get the trial key, you need to create an account in their website and then generate the trial key also from their website. Make sure you check the version of the portlet that you install. For me, I use version 2.03 which looks like the latest that was released for my JIRA.
Hopefully, this info will help others.

Resources