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
1
vote
1 answer

Couldn't detect an AMPS plugin to dispatch to

I am currently in the process of creating a JIRA plugin. After upgrading AMPS from 6.3.15 to 8.0.0 and running atlas-debug / atlas-run I am greeted with the following maven error: [ERROR] Failed to execute goal…
luk2302
  • 55,258
  • 23
  • 97
  • 137
1
vote
1 answer

JavaScript: Add delay to a jquery ajax retry

I've got code in the following structure. The intent is to send an Ajax request, and to retry it some number of times with a delay between each try: $.ajax({ type: 'GET', url: 'https://example.com', retryLimit: 3, attempt: 1, success:…
ewok
  • 20,148
  • 51
  • 149
  • 254
1
vote
0 answers

Get anonymous space permissions even if anonymous is deactivated

I try to get the space permissions of the anonymous users. I found the method hasPermission from the SpacePermissionManager, which states that you can use null for the user if you want to get the anonymous rights. This works fine, except the…
Lithilion
  • 1,097
  • 2
  • 11
  • 26
1
vote
1 answer

Can't fix "There is no Action mapped for namespace [/build/result] ". What is the correct way of adding action to bamboo namespace?

I am developing a bamboo plugin using the Atlassian-SDK. This plugin would add a new tab to the Bamboo Jobs page that would display an HTML report (present in artifact) in the same tab. My Atlassian-plugin.xml looks like
1
vote
1 answer

How to use the Executable (defined as Capability in Bamboo) in the plugin code

From the sample code on Atlassian site https://developer.atlassian.com/server/bamboo/executing-external-processes-using-processservice/ ExternalProcess process = ProcessService.createExternalProcess(taskContext, new…
ktime
  • 63
  • 13
1
vote
1 answer

Create a Jira Issue with custom Field name by using atlassian SDK

Through C# I am trying to create Jira issue which has custom field "Selling Details" using Atlassian SDk. Below is the code: string username = "XXX"; string password = "XXX"; string url = "https://rajasekharjira.atlassian.net"; …
Nani
  • 13
  • 5
1
vote
1 answer

bamboo: my custom action in xWork not decorated, the page shows without tabs

I am new to Atlasian Bamboo development and have a problem, if you could help me. I develop a bamboo plugin and I have this xwork:
1
vote
1 answer

Atlassian JSD plugin development (dependencies and plugins cannot be found)

I'm new to the Atlassian development and I've went over the guides/tutorials for plugin development and everything worked fine (I'm using Ubuntu with IntelliJ as IDE). Also read the "Jira 7 Development Cookbook - Third Edition". When I tried to…
MirzaS
  • 514
  • 3
  • 16
1
vote
0 answers

Jira plugin not working with com.jcraft.jsch

jcraft.jsch in my atlassian plugin in my webitem action it doesn't work and the button is not showen processGenerateClass.java public class processGenerateClass extends JiraWebActionSupport{ /** * */ private static final long serialVersionUID =…
1
vote
1 answer

How to fix "AOP configuration seems to be invalid" error?

I am developing a plugin for Bitbucket using atlassian-sdk. When I try to use GitCommandFactory, I run into the below error: "AOP configuration seems to be invalid: tried calling method [public abstract…
kaushikv
  • 135
  • 1
  • 12
1
vote
1 answer

Atlassian plugin wont compile, missing packages from install

Creting a bitbucket plugin with both a pre and post hook, however the project fails to compile due to package error. A simple flow using the following commands will result in errors. atlas-create-bitbucket-plugin &…
mjh
  • 41
  • 6
1
vote
1 answer

atlas-run build failure after timeout error pinging "*/cargocpc/index.html" due proxy authentication required 407

While running atlas-run -dhttp.proxyhost=*... i get the timeout error after 600000ms (10m). During this 10 minutes everything works fine and i can use my plugin properly. The company where i work use Proxy and therefore i have 2 proxy entries: the…
vandyke
  • 117
  • 2
  • 12
1
vote
0 answers

Atlassian SDK + Win10 => -Dmaven.multiModuleProjectDirectory system property is not set

I am trying to use Atlassian SDK 6.2.9. on my laptop with Win10, but there is a maven problem. Java:1.8.0_101 Mvn: 3.3.9 (M2_HOME) CMD full stack says more: c:\>atlas-version ATLAS Version: 6.2.9 ATLAS Home: …
Lukas Adamek
  • 111
  • 1
  • 7
1
vote
1 answer

How to resolve the red lines in default Confluence plugin pom.xml

I use "atlas-create-confluence-plugin" to create a Confluence plugin skeleton, and found the pom.xml has many red lines, some are for project build error and some are for dependancy missing. As below picture shows, the red lines indicate many…
Jack
  • 347
  • 1
  • 2
  • 22
1
vote
0 answers

pom profiles for jira plugin development

I'm building a JIRA server plugin using the latest atlassian sdk. So for the time being I created several profiles to suport jira 6 & 7. ${project.artifactId}-${project.version}-${packageName}
Prem
  • 93
  • 1
  • 1
  • 5