Questions tagged [atlassian-plugin-sdk]

the Atlassian plugin tag is for questions related to the Atlassian plugins SDK from the company Atlassian

the Atlassian plugin tag is for questions related to the Atlassian plugins SDK from the company Atlassian

222 questions
0
votes
1 answer

Problem to find the right JIRA Java SDK version

[1] I am having a hard time finding the right JIRA SDK version. I want this StatusCategory class, but I do not find the right jar file containing…
Florian
  • 332
  • 2
  • 15
0
votes
1 answer

Jira/Atlassian Java Service Desk API - best way to handle authenticating customers/service desk user accounts on a reporting application?

Currently working on a service desk application that allows service desk users on our system to see more than they currently can on Jira. What i'm wanting to do is allow them to be able to comment on tickets and possibly add further tickets. I am…
0
votes
1 answer

Automatically update npm version when pull request is merged in bitbucket

The idea is to trigger npm version patch to increase the version from 1.2.3 to 1.2.4 once you press the button of the image: So every change in the develop's branch means a new build version in the application. I have tried using…
David
  • 614
  • 5
  • 20
0
votes
1 answer

CreateValidationResults doesn't see customFieldValue

I am creating issue with atlassian jira plugin and want to add a custom field in it called customfield_111. When I run a validation with validateCreate then the result of class CreateValidationResult should have passed customField but it has…
wykopowiedz
  • 71
  • 2
  • 12
0
votes
1 answer

What is com.opensymphony.workflow.loader.ActionDescriptor?

I have found it in one of private Atlassian's plugins to Jira projects. import com.opensymphony.workflow.loader.ActionDescriptor; and there is nothing like this in pom.xml. I can't find a maven dependency for it. IDE shouts it is an error, but…
wykopowiedz
  • 71
  • 2
  • 12
0
votes
1 answer

Jira plugin: Specify lifecycle phase or a goal in atlassian pom.xml

I have build a starter atlassian jira plugin with command: atlas-create-jira-plugin. The pom.xml was generated:
wykopowiedz
  • 71
  • 2
  • 12
0
votes
1 answer

How to read response of a JIRA REST API

Using the Atlassian documentation, I'm able to create a new JIRA ticket using curl command. I want to understand how to read the response of this command into a variable? Essentially i want to store the JIRA ticket ID into a variable that can be…
Yash
  • 2,944
  • 7
  • 25
  • 43
0
votes
2 answers

How to set the description of a JIRA Workflow Validator?

I'm working on a simple JIRA Server plugin that will prevent a transition from occurring if a certain custom field has not been set. I have created a new workflow validator with atlas-create-jira-plugin-module and tailored the validate function to…
Jonathan.Taylor
  • 302
  • 1
  • 9
0
votes
0 answers

How to override server.xml for Atlassian SDK?

I installed the Atlassian SDK 6.3.12. Now I am developing a plugin for Jira. And issued with problem, that I can't change the server.xml for tomcat8x (located in target plugin folder). Because every start of atlas-debug or atlas-run this file is…
Woland
  • 623
  • 2
  • 13
  • 31
0
votes
1 answer

C# JIRA SDK Unclear Error in SaveChanges() Function

I'm trying to create a web form where I can dynamically create a JIRA Epic using whatever the user inputs. I'm relying on the Atlassian JIRA SDK Nuget package to do so. Here's the function as it stands right now. public ActionResult Create(string…
0
votes
0 answers

How to execute Pipeline for Atlassian Plugin Project

I'm trying to setup Pipeline for Atalassian JIRA Plugin project but it's failing with the following error: The project com.xxx.jira.myplugin:jira-myplugin:0.0.1 (/opt/atlassian/pipelines/agent/build/pom.xml) has 2 errors [ERROR] Unresolveable…
JSS
  • 2,061
  • 1
  • 20
  • 26
0
votes
1 answer

How to populate default values of fields while creating issues in JIRA using jira-plugin?

I am working on jira-plugin to create issues in JIRA. I am using the method - create(user,createValidationResult) to create issue. I need to give values of mandatory fields while creating. I want to give the default values of fields while…
0
votes
0 answers

Jira Plugin override system javascript file

I'm about to release a plugin, but currently have problems with a PolyFill in Internet Explorer. My frontend of the plugin works with a JavaScript Model driven state management MobX. It depends on an ES6 function Array.prototype.find. This polyfill…
0
votes
1 answer

Atlassian.Net SDK get all projects and sprints

I am using Atlassian .net SDK from NuGet gallery. I am able to retrieve all the issues with below code: var jira = Jira.CreateRestClient("https://xxxx.atlassian.net", "user name", "pwd"); var jiraIssues = from i in jira.Issues.Queryable …
Vikas Kottari
  • 495
  • 2
  • 10
  • 24
0
votes
1 answer

Atlassian SDK 404 Error when trying to do atlas-run

I followed the tutorial on https://developer.atlassian.com/server/framework/atlassian-sdk/create-a-confluence-hello-world-macro/ But when I try to do atlas-run and open localhost:1990/confluence, I get a 404-error. I already checked my java and sdk…