- Jira admin account (or Personal Access Token)
curl,python3(orjq)
Maven build fails with an error like:
org.jenkins-ci:jenkins:pom:1.39 was not found in https://packages.atlassian.com/maven-public/
during a previous attempt. This failure was cached in the local repository and resolution
is not reattempted until the update interval of maven-atlassian-all-public has elapsed
When building an Atlassian Jira plugin against Jira 9.12.x, Maven fails with:
Failed to read artifact descriptor for commons-httpclient:commons-httpclient:jar:3.1-jenkins-3
Caused by: The following artifacts could not be resolved: org.jenkins-ci:jenkins:pom:1.39
When building an Atlassian Jira plugin, Maven fails with the following error:
Artifact com.atlassian.pom:public-pom:pom:5.0.21 is present in the local repository,
but cached from a remote repository ID that is unavailable in current build context,
verifying that is downloadable from [maven-central (https://repo.maven.apache.org/maven2, default, releases+snapshots)]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package pmpshk.atlassian.upm; | |
| import org.apache.http.auth.UsernamePasswordCredentials; | |
| import org.apache.http.client.methods.CloseableHttpResponse; | |
| import org.apache.http.client.methods.HttpGet; | |
| import org.apache.http.client.methods.HttpPost; | |
| import org.apache.http.entity.ContentType; | |
| import org.apache.http.entity.mime.MultipartEntityBuilder; | |
| import org.apache.http.impl.auth.BasicScheme; | |
| import org.apache.http.impl.client.CloseableHttpClient; |
-
To install the OpenSSH on the Windows machine, follow these tutorials:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git rm -r --cached . | |
| git add . | |
| git commit -m 'git cache cleared' | |
| git push |
There are a few JQL syntax bits to get you started:
AND--- allows you to add qualifiers to a list!= Thing--- target one thingis in (List, Of, Things)--- target a bunch of things (Done, Closed, Resolved) typicallynot in (List, of, Things)--- do not include a bunch of things-1w--- relative time. You can also use -1d for day"2015/3/15"--- specific dates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GET https://flowxo.com/api/conversations/615c6b5e14fc0900a6556061%2Fc%2FMwvFx5eJp/messages?skip=0&limit=1000 | |
| Accept: application/json | |
| Authorization: Bearer ***** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.atlassian.jira.bc.issue.search.SearchService | |
| import com.atlassian.jira.component.ComponentAccessor | |
| import com.atlassian.jira.jql.builder.JqlQueryBuilder | |
| import com.atlassian.jira.util.thread.JiraThreadLocalUtils | |
| def searchService = ComponentAccessor.getComponent(SearchService) | |
| def customFieldManager = ComponentAccessor.customFieldManager | |
| def storyPointsCf = customFieldManager.getCustomFieldObjectByName('Story Points') | |
| def issue = event.issue |
NewerOlder