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

Atlassian confluence plugin. Transaction configuration. Package-import error. Version Constraint

I have confluence plugin project and I want to implement transactions for my service classes using spring annotations, but I get the error: [INFO] [talledLocalContainer]2014-05-23 13:12:06,298 ERROR [main][plugin.osgi.factory.OsgiPlugin]…
user2374573
  • 59
  • 1
  • 3
  • 11
1
vote
3 answers

How to add custom field in Jira work log dialog

I want to add a combo box with some elements in my JIRA work log dialog / screen. The combo box will add a String (like "[DEV] - ") in front of the work description. It seens to be simple, but I cannot find a tutorial in the Jira documentation... I…
lucasbraum
  • 53
  • 2
  • 7
1
vote
1 answer

Bamboo CppUnit Test Parser reports no tests

We have a Bamboo server (v5.0.1) running CppUnit tests and creating an XML file with the results from 12 tests. The CppUnit Task is being run against the XML test results file. The build reports that there are '0 test in total', when I would expect…
HeavyE
  • 2,132
  • 1
  • 23
  • 31
1
vote
0 answers

How to include production classes in test jar with Atlassian SDK?

I'm developing a Confluence 4.3.7 plugin using Atlassian SDK 4.2.3. I Need to include production classes (under target/classes) in the integration test jar(${plugin-name}-tests.jar). Since I don't declare some of them as Components in…
Chedy2149
  • 2,821
  • 4
  • 33
  • 56
1
vote
1 answer

Custom Jira Plugin: Cannot Update an issue

I am trying to create a jira plugin that would update 'Assignee' of any issue i pass it using issueKey parameter. It does everything right, like i get correct issueId and user but it is unable to update the issue and it doesnot show anything in logs…
1
vote
2 answers

Apache axis logging - ClassCastException while using it inside a Jira plugin

My Jira 5.0 plugin is broken with the following exception: java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ... Caused by: java.lang.ExceptionInInitializerError at…
Turnsole
  • 3,422
  • 5
  • 30
  • 52
1
vote
1 answer

Getting SLF4JLogFactory exception while trying to access web services from Confluence 3.0

I have been able to understand about the dependencies and procedures to add Jar files into a Confluence project with the help of a friend from here. But I am facing an error with the addition of these JAR's. The exact cause of the error seen is…
Angela Sim
  • 137
  • 1
  • 21
0
votes
2 answers

Could not Create Services for JIRA

I would like to create a service for JIRA. I'm using atlassian-plugin-sdk-3.8. I write program in java for that service.. When i'm importing the atlassian api import com.atlassian.jira.project.ProjectManager; import…
xavierkcb
  • 129
  • 1
  • 2
  • 8
0
votes
1 answer

Use Spring Integration in Jira Plugin Development

I'm trying to use Spring Integration module in my Jira plugin. When I'm starting it I see following error: [INFO] [talledLocalContainer] [INFO] [talledLocalContainer] 1 plugin failed to load during JIRA startup. [INFO]…
0
votes
1 answer

Can no longer build Confluence plugin

At work I help to develop a Confluence plugin. Current software versions (and I believe the latest we can currently use, because reasons), according to atlas-version, are: ATLAS Version: 8.2.7 ATLAS Maven Home:…
calum_b
  • 233
  • 4
  • 12
0
votes
1 answer

Know for which project/issue types a specific behavior is used in Jira data center

Is there a way to know for which projects/issue types a bahavior is used in Jira? I am thinking of upgrading ScriptRunner and I need to know the exact usage of a specific fragment and its specific domain of application. When I go to fragments, I get…
0
votes
0 answers

How to get the information of the currently logged in user in jira data center/server plugin module

I’m creating a Custom field module in my plugin, and I want to control the visibility of that field based on " Which groups are the user is a member of " of the logged user. My question is: how would I be able to retrieve the groups that the user is…
Qusai Atoon
  • 279
  • 5
  • 11
0
votes
0 answers

error generating Graph API token using Atlassian(confluence) plugin sdk in java

I am trying to generate the graph API token for azure AD using atlassian plugin module in java , I entered the dependencies in the POM file , built the jar , deploy it on confluence it is showing the error , Caused by:…
0
votes
1 answer

How to create a dialog box on click of a Web Item in Confluence?

I am new to developing plugins in Confluence. I have created a Plugin which is adding a Web-item “AAD Permissions” under Space permissions section of Confluence (attaching the screenshot for reference). Now, on click of that Web item I need to open…
0
votes
0 answers

Create dynamic web hook for Jira, connect Spring boot

I am attempting to register a web hook to my Jira cloud instance and I am following their documentation but I have not been able to make it work. Specifically the section: Making API requests to the product as the…