jira

Query all issues for the currently active project in Jira

隐身守侯 提交于 2019-12-12 13:14:10
问题 I would like to create a general query that is active in the web interface that selects all issues for the currently selected project. For example if I have two projects PROJ1 PROJ2 to select all issues for PROJ1 I would create a query Project = PROJ1 However, if I have a multitude of projects I need to create a query specific to that particular project. What I would like to do is create a query such as Project = CurrentProject Is there a query syntax that allows me to do such a thing? 回答1:

TeamCity and JIRA over HTTPS

。_饼干妹妹 提交于 2019-12-12 12:34:51
问题 I have JIRA and TeamCity running on two separate servers both accessible via HTTPS and self signed certificates. I would now like to integrate JIRA as TeamCity's issue tracker. However, when I try and setup the connection from TeamCity I get a CertificateException . TeamCity is on a Ubuntu 101.10 machine and I tried to import the certificate from the JIRA server into /usr/lib/jvm/java-6-openjdk/jre/lib/security/ but this made no difference. 回答1: The command for importing a self-signed

Authenticate Jenkins users against JIRA

╄→гoц情女王★ 提交于 2019-12-12 10:35:19
问题 We are currently setting up Confluence, JIRA and Jenkins and I would rather have only one user database that all tools can use than having to create separate accounts in each tool. Google tells me that Jenkins can authenticate and authorize users against Atlassian Crowd. Confluence can use Crowd and also JIRA for user management. But can Jenkins use JIRA (not Crowd) as its user database, to authenticate and authorize users against it? 回答1: One method is with the Crowd2 (Jenkins plugin). From

How to get all SVN commits that do not include Jira bug key in the comment?

你离开我真会死。 提交于 2019-12-12 09:39:47
问题 I have Jira and Fisheye setup so that I can include Jira key in the commit comment (Smart Commits). Fisheye will link source code and Jira issue mentioned in the commit. I would not like to use something like JIRA Commit Acceptance Plugin to decline commits without Jira keys. As it is too restrictive. But would still like to monitor commits without Jira keys. How to get a report of all SVN commits that do not include Jira bug Key in the comment? 回答1: You can run following command on UNIX in

How can I get JIRA issue number from a commit message in Jenkins

若如初见. 提交于 2019-12-12 07:28:36
问题 I am using Gitlab for our source code management, jenkins for CI jobs and JIRA for issue tracking. Once I commit in gitlab with an issue number for example "Project-123 edited demo file.", I have a jenkins hook that triggers a build. I have the JENKINS's Jira Plugin and use Progress JIRA issues by workflow action. I have a two part question: my JQL for searching for the issue is: project=PROJ and status="Build Started" and updated >= "-15m" My workflow action is Jenkins Build is Successful.

jirasoapservice and Fix Version

大城市里の小女人 提交于 2019-12-12 06:37:19
问题 I need get fixversion from Jira or create new. I use Jira ver. 4.4.4 and velocity plugin 0.2.11. For new version I can use: RemoteIssue issue = new RemoteIssue(); RemoteVersion version = new RemoteVersion(); version.name = name; version.id = ...;// what I must write there if I know only name? issue.reporter = user.name; issue.summary = IssueName; issue.description = IssueName; issue.fixVersions = new .RemoteVersion[] { version }; thanks 回答1: When I use the addVersion SOAP method in the JIRA

How can I programatically get Source code information from Issue Number in Jira Studio?

三世轮回 提交于 2019-12-12 06:29:31
问题 JIRA Studio (the "Issues" area, which is basically the part that just looks like "JIRA") includes a Source Tab. We link this to our Subversion instance (by including an issue number in the Message during check-in), this work great for human processes, but I can't find a way in the JIRA, Subversion, or Fisheye APIs to get at this link. Ideally, I'd like to call getIssue on the JIRA api and have it return the Subversion Revision IDs along with all the other info it returns, but I'd take any

What is the best strategy to extract information from a JIRA issue?

佐手、 提交于 2019-12-12 05:48:03
问题 I'm developing FreedomSponsors - a crowdfunding platform for open source projects. I want to improve the "Sponsor new issue" screen by pre-filling some information, based on the issue's URL. My first "target" is JIRA. Given a URL like https://hibernate.onjira.com/browse/HHH-1050, What's the best way to extract information like: issue key: HHH-1050 project issue tracker URL: https://hibernate.onjira.com/browse/HHH (ok, the first two are easy) issue title: "HQL Unions" project title: "Hibernate

Worklog entries of an JIRA-user needs to be fetched

梦想的初衷 提交于 2019-12-12 04:55:51
问题 I have 15 usernames with me, I need to pull worklog entries of these users and manipulate it from JAVA client Below are the jar files am using to connect JIRA api and fetch values The code is pasted below public class JiraConnector { JiraRestClient jira; public JiraConnector() throws URISyntaxException { String url = prop().getUrl(); String userName = prop().getUser() ; String password = prop().getpwd() ; JerseyJiraRestClientFactory clientFactory = new JerseyJiraRestClientFactory(); jira =

Wget to download excel from Jira automatically

冷暖自知 提交于 2019-12-12 04:45:24
问题 I have tried the below commands to get the excel file automatically from jira but I'm getting different data other than the filter data. wget --user username--password pass -O test.xls --ignore-length=on http://esjirq62.emea.nsn-net.net:8080/sr/jira.issueviews:searchrequest-excel-all-fields/70920/SearchRequest-70920.xls?tempMax=1000; curl -D my-output.xml -u upgrade:hjjKl801 -X GET -H "Content-Type: application/json" http://esjirq62.emea.nsn-net.net:8080/sr/jira.issueviews:searchrequest-excel