Questions tagged [jira]

Questions tagged with [jira] should be related to interacting with Jira programmatically.

Jira is a proprietary issue tracking product, developed by Atlassian. It's often used to track issues for software development and other teams, and has many apps to support this.

There are two ways to interact with JIRA programmatically:

  1. APIs are typically used when building a Plugins2 plugin for Jira Data Center, which is a single containing code, an app descriptor () and usually some template files to render .
  2. REST APIs are typically used when building Connect add-ons (web applications for Jira Cloud) or configuring webhooks.
5925 questions
13
votes
2 answers

Log work in JIRA

I'm creating a list of tools that help to log work in JIRA (apart from the worklog features provided in the JIRA interface itself). Tools and utilities I found on the plugins.atlassian.com and googling around, are Agile Plugin Worklog…
Francis Martens
  • 3,458
  • 4
  • 24
  • 26
13
votes
4 answers

Custom sort order of jira workflow statuses in a filter using JQL

I know you can change the order statuses are displayed by admin > issues > statuses and sort order but I'd prefer to order the results in my jql with certain statuses at the top and a specific order. Is it possible to order how statuses appear in a…
yoshiserry
  • 20,175
  • 35
  • 77
  • 104
13
votes
5 answers

.NET wrapper for JIRA api?

I'm working on a JIRA implementation and need to make use of the API. Does anyone know of an existing .NET wrapper for the JIRA SOAP API?
Joe Barone
  • 3,112
  • 3
  • 24
  • 20
13
votes
2 answers

Xcode 7 doesn't show new remote branches using Git

In Xcode 7, after creating a new remote branch using Jira/Stash, when I pull master, the new branch used to show up as an optional origin branch. Now newer branches don't show up at all, so creating a new local branch isn't as easy. Before you…
whyoz
  • 5,168
  • 47
  • 53
13
votes
2 answers

Prevent log4net to send duplicate issues via SMTP

we have bridged our log4net with Jira using SMTP. Now we are worried that since the site is public what could happen to the Jira server if we get alot of issues in the production environment. We have already filtered on Critical and Fatal, but we…
Andreas
  • 545
  • 1
  • 4
  • 16
13
votes
4 answers

SSL3 Certificate Verify Failed when Connecting to JIRA API Using Python

I'm currently running into an error when attempting to connect to JIRA using Python2.7 and the JIRA REST API (http://jira-python.readthedocs.org/en/latest/). When I execute the following: from jira.client import JIRA options = { 'server':…
pyNovice89
  • 309
  • 2
  • 4
  • 10
13
votes
3 answers

How to filter for last working day in Jira JQL

We use Jira Agile with a "Daily Scrum" board which filters for issues due in the last day. This will show us the issues we should have fixed yesterday and the issues we will fix today. This works great, except for Mondays. On Monday we want to see…
Frank Groeneveld
  • 1,794
  • 3
  • 16
  • 23
13
votes
4 answers

Get all Jira Issues for a specified Project

I am using Jira REST API to get all the Issues in Jira for a specific Project. I don't want to have maxResults=50, which is the default. I just want to retrieve all issues for the project. Here is my command: { my $result = `curl -D- -u…
Shereen Hussein
  • 175
  • 1
  • 2
  • 9
12
votes
8 answers

Running JIRA on a VM

Anyone have any success or failure running Jira on a VM? I am setting up a new source control and defect tracking server. My server room is near full and my services group suggested a VM. I saw that a bunch of people are running SVN on VM…
Peter Kahn
  • 12,364
  • 20
  • 77
  • 135
12
votes
4 answers

JIRA JQL - Find issues with more than X days in Status

I want to show all issues where it has been in a current status for more than X days - is this possible? We have this workflow: Registered => Analyze => Planned ... etc. The ticket can be in Registered for 3 weeks and it can be 3 weeks in Analyze…
Beauvais
  • 2,149
  • 4
  • 28
  • 63
12
votes
4 answers

jira and git linking up

I recently moved to jira for my bug management tool. I have installed the most recent copy which 4.1. We use Git as our version control system, I am looking to set it up, so looking around i found that the Git Integration Plugin for JIRA by…
Mahdi Yusuf
  • 19,931
  • 26
  • 72
  • 101
12
votes
1 answer

Creating JIRA issue using curl from command line

I've been through documentation here according to which I'm creating a issue for JIRA . I know I'm making some terribly small mistake . I'm trying to create a new JIRA request from command line (later I'll integrate in my java code) From my Mac…
lazy rabbit
  • 1,076
  • 3
  • 11
  • 29
12
votes
7 answers

Jira and TFS integration?

Does anybody know of an plugin that can be used to integrate Jira with TFS?
vikasde
  • 5,681
  • 10
  • 45
  • 62
12
votes
3 answers

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?
user2994965
12
votes
3 answers

jira python oauth: how to get the parameters for authentication?

I am trying to use oauth to access jira, and I am reading this document: Welcome to jira-python's documentation. But in this oauth part, I cannot figure out how I can get these parameters: access_token, access_token_secret, consumer_key, key_cert
Cacheing
  • 3,431
  • 20
  • 46
  • 65