atlassian-plugin-sdk

How To Install Atlassian Connector On Eclipse Photon 4.8.x Version

微笑、不失礼 提交于 2021-01-28 18:11:05
问题 I can not download Atlassian connector for eclipse photon 4.8.0 version. It support Installation via the Eclipse Marketplace for Eclipse 3.7 (Indigo), 4.2 (Juno), 4.3 (Kepler), 4.4 (Luna) But not Photon. This site is supporting download https://confluence.atlassian.com/ideplugin/atlassian-connector-for-eclipse/installation-and-upgrade-guide-for-the-eclipse-connector/installing-the-eclipse-connector How can I plugin it to Photon? 回答1: Although the development of the plug-in has been

Atlassian bamboo .Net plugins dependencies installation

こ雲淡風輕ζ 提交于 2020-01-17 05:59:09
问题 I wish to modify the existing Atlassian Bamboo .Net plugin: https://bitbucket.org/atlassian/bamboo-dotnet-plugin so the MsTest Parser will include StackTrace information. I've downloaded the repository locally, and I have tried to install all of the project dependencies using Maven command: mvn clean install -U . Unfortunately not all jars were downloaded, so I've searched online for help and found that by using the Atlassian SDK I could build the project and let it handle all the maven stuff

Replacing deprecated AbstractEditHandlerDetailsWebAction in Atlassian JIRA plugin for 7.X

混江龙づ霸主 提交于 2019-12-25 16:48:37
问题 I'm following Atlassian's Tutorial - Custom message (mail) handler for JIRA I've hit a brick wall with the second to last step: 3) Create a new file named EditDemoHandlerDetailsWebAction.java in src/main/java/com/example/plugins/tutorial/jira/mailhandlerdemo directory, and give it the following contents: package com.example.plugins.tutorial.jira.mailhandlerdemo; import com.atlassian.configurable.ObjectConfigurationException; import com.atlassian.jira.plugins.mail.webwork

Replacing deprecated AbstractEditHandlerDetailsWebAction in Atlassian JIRA plugin for 7.X

旧城冷巷雨未停 提交于 2019-12-25 16:48:21
问题 I'm following Atlassian's Tutorial - Custom message (mail) handler for JIRA I've hit a brick wall with the second to last step: 3) Create a new file named EditDemoHandlerDetailsWebAction.java in src/main/java/com/example/plugins/tutorial/jira/mailhandlerdemo directory, and give it the following contents: package com.example.plugins.tutorial.jira.mailhandlerdemo; import com.atlassian.configurable.ObjectConfigurationException; import com.atlassian.jira.plugins.mail.webwork

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

How Jira plugin custom field value gets processed on the way to .vm templates

半世苍凉 提交于 2019-12-23 20:06:56
问题 Jira server 7.2.1. Custom field plugin. The question follows this discussion Can't understand, what does method getSingularObjectFromString do? and some info from "Practical jira plugins" I'm trying to implement a database custom field with basic value-displayValue logic. The field represents an external entity, so I'm storing ID as a value of the field, but displaying NAME. I have two .vm templates: edit and view. I'm trying to choose the right place to convert ID to NAME. I've overridden a

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

不羁岁月 提交于 2019-12-23 03:13:43
问题 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 : javax.servlet.ServletException: Servlet execution threw an exception at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:313) caused by: java.lang.ExceptionInInitializerError at org.apache.axis.attachments

JIRA Plugins SDK: How to find out changed data?

我的梦境 提交于 2019-12-11 10:01:34
问题 I am using the JIRA plugins sdk to work on changed Issues. I´ve implemented an IssueListener and I have access to the Issue itself and the IssueEvent. How do I find out which property (summary, description, estimation ...) of my Issue has been changed ? 回答1: The changelog is likely to contain what's been changed and there is a method on the IssueEvent object to get this ( getChangeLog ) and it returns a GenericValue object. This post on the Atlassian Answers site gives some code related to an

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

别来无恙 提交于 2019-12-08 04:55:35
问题 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 org.apache.axis.description.OperationDesc.<clinit>(OperationDesc.java:65) at com.xyz.germander.AddTestTrackLinkDialogAction.doConfirm(AddTestTrackLinkDialogAction.java:23) ... 148 more Caused by: java.lang.ClassCastException: org.apache.commons.logging.impl.SLF4JLogFactory

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

僤鯓⒐⒋嵵緔 提交于 2019-12-07 19:23:26
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 org.apache.axis.description.OperationDesc.<clinit>(OperationDesc.java:65) at com.xyz.germander.AddTestTrackLinkDialogAction.doConfirm(AddTestTrackLinkDialogAction.java:23) ... 148 more Caused by: java.lang.ClassCastException: org.apache.commons.logging.impl.SLF4JLogFactory cannot be cast to org.apache.commons.logging.LogFactory at org.apache.axis.components.logger.LogFactory