jira

Ant tasks for JIRA

心不动则不痛 提交于 2019-12-25 03:59:34
问题 Is it possible to create JIRA issues using Ant tasks? I'd like to automatically create JIRA issues using Ant. 回答1: Please check ant-jira. I never used it, looks like you can find some use and tell us how useful it is. 回答2: Use an Ant task to execute a shell command. Make the shell command the Atlassian CLI from Bob Swift. 来源: https://stackoverflow.com/questions/8531101/ant-tasks-for-jira

Using node.js to fetch json data from jira using the jira-connector library not working when deployed in heroku

被刻印的时光 ゝ 提交于 2019-12-25 03:54:07
问题 As mentioned above, I fetched data and displayed it in a get request to retrieve data from server and display it in JSON format, I used this library https://www.npmjs.com/package/jira-connector , whenever i locally fetch data it works and displays the JSON data but when I deploy it in Heroku web server ( example.herokuapp.com ), the fetched data is not displayed at example.herokuapp.com/jiraWIPCRs (empty data / null) and in http://localhost:2000/jiraWIPCRs the data is displayed. const base64

Is it possible to give edit issue permission if there's not work log on issue in JIRA?

ぃ、小莉子 提交于 2019-12-25 03:34:52
问题 I configured that jira-users group members can create issues. And I want to give edit permission to jira-users but only if the issue hasnot a work log in it Is this possible in JIRA 4.4.x Thanks 回答1: So you can only edit an issue if work hasn't started on it? Tricky. I think I'd end up editing system-issueoperations-plugin.xml and changing the condition elements to add a new condition. The new condition would be a custom condition that checked whether the issue has at least one work log. 回答2:

Automating custom field value change in JIRA

我只是一个虾纸丫 提交于 2019-12-25 01:34:46
问题 I have a custom field called " Detailed Status " in the issue page. After an issue is verified by testers, they will change the value of this field to " Ready for Deployment ". After we deploy the latest code to the server, this should be changed to " Verified after Deployment ". At the moment, after every deployment there will be at least 10-15 issues which will require a developer to manually go to each issue and change the value of the custom field to " Verified After Deployment " Is there

Efficient ways to find the highest JIRA issue ID in a project

£可爱£侵袭症+ 提交于 2019-12-25 01:15:58
问题 I am trying to use the JIRA SOAP API to elegantly determine the ID number that is the highest among all the ID numbers of JIRA issues in a certain project. An upper bound is fine; I do not need the exact answer. I was thinking of doing this by finding the number of existing issues, but I did not find a nice way to do this. I also thought that perhaps I could create a new issue and use the ID number of the new issue as the number of issues. This is not a very good way of doing this as I then

JIRA: How to make a webhook fire for only a single transition, of a workflow?

你离开我真会死。 提交于 2019-12-24 12:22:26
问题 Scenario is : Git -> JIRA -> Jenkins A commit in Git, must change an issue status in JIRA, which in turn, should trigger a build for a job in Jenkins. Method Tried : I created a WebHook in JIRA. This webhook contains the URL for a Jenkins job. Attached this WebHook to a Work Flow in JIRA, as a post function . The workflow is a simple one. It says: [InReview]-->[InProgress]-(Aprrove)->[Done] The webhook is attached to the transition from [InProgress] to [Done] IssueKey and Issue-Updated has

How do I find Synchronizer External URL for TFS4JIRA on visualstudio.com

僤鯓⒐⒋嵵緔 提交于 2019-12-24 12:11:02
问题 I need to configure TFS4JIRA with visualstudio.com but On TFS4JIRA plugins in JIRA asking 'Synchronizer External URL' and I tried to find URL on visualstudio.com but didn't get it. 回答1: 'Synchronizer External URL' is the address of Synchronizer application that should be installed on your Windows machine, it has nothing to do with xxx.visualstudio.com. Remember that Synchronizer address should be accessible from internet, or more precise - from http://tfs4jira-ondemand.spartez.com (please

How to report failed testcase in jira using automation

爱⌒轻易说出口 提交于 2019-12-24 11:15:13
问题 I am automating a website using selenium webdriver with java, I want to write the result "Pass" or "Fail" in excel sheet. How can i automate the reporting of a failed test case in JIRA by taking the status from excel sheet. 回答1: Since you are already writing to an excel file, I understand that you are able to access the contents of the Excel Sheet. If this is not completed yet, you might want to consider using http://poi.apache.org/spreadsheet/index.html for this purpose. Once you have the

Displaying Jira issues using Issue Navigator

老子叫甜甜 提交于 2019-12-24 08:48:23
问题 Below is simple Jira JQL search statement: JqlQueryBuilder builder = JqlQueryBuilder.newBuilder(); builder.where().assignee().in("Dylan").and().unresolved(); Query query = builder.buildQuery(); Then we have search results: SearchResults results = searchService.search(authenticationContext.getUser(), query, PagerFilter.getUnlimitedFilter()); List<Issue> issues = results.getIssues(); Problem : I need to find issues, filter them using several criteria and show results to the user using standard

How to add webwork action to a project panel?

自作多情 提交于 2019-12-24 04:41:09
问题 I have made my own plugins (separate) with webwork actions and with project tab modules. But now I need to combine both: there will be some comboboxes and a button that make the plugin calculate statistics. I need to show it in the same project tab. I am having trouble with both steps: How to do any Java code BEFORE project tab will be shown, and generate contents of this page with info that Java code will retrieve from userManager, groupManager etc. (fill combobox with usernames). How to