Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira custom Applink not showing up

Marius Riehl
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 5, 2020

Hi,

i'm trying to write a jira plugin that uses applinks to link jira to a non-atlassian application. 

I configured a plugin and and in atlassian-plugin.xml the following:

<applinks-application-type name="intergator" key="intergator"
class="de.ifbus.intergator.plugins.jds.plugin.IntergatorApplicationType">
<manifest-producer class="de.ifbus.intergator.plugins.jds.plugin.IntergatorManifestProducer"/>
</applinks-application-type>

In "Manage Apps" there is a module called "intergator" visible. But in the Applinks the Application Type does not show up.

Screenshot_1.png 

I've tried for 3 days now and nothing works :(

Regards - Marius

1 answer

0 votes
nick_fisch
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 23, 2021

This repository helped me a lot:
https://github.com/SAP-samples/SAPJamWorkPatternJIRAIntegration/tree/master/jira_plugin

All you need for the application type to show up is a class for the application type itself and a class for the manifest producer. In the manifest producer class you can ignore the AuthenticationProviders initially. Just return null for these.
In the atlassian-plugin.xml you need to add the applinks-application-type. But you already have that.

Also make sure to set the maven home directory to the one that comes with the Atlassian SDK.

Another tip for working with the Atlassian SDK is to not restart Jira every time you want to build your plugin. Just use a second command line and run atlas-mvn package. This saved me a ton of time.

Suggest an answer

Log in or Sign up to answer