Hello,
I would like to use the servicedesk apis in my plugin, but I'm unable to figure out what dependencies I need to add so that I can access the classes:
https://docs.atlassian.com/jira-servicedesk/3.9.1/
I'm also not sure about the version, I'd like to target Servicedesk 4.0.2 and Jira 8.0.2
Any pointers greatly appreciated!
For version 4 it's necessary to import the following:
<dependency>
<groupId>com.atlassian.servicedesk</groupId>
<artifactId>jira-servicedesk-api</artifactId>
<version>4.0.2-REL-0002</version>
<scope>provided</scope>
</dependency>
I'm not clear on why it's REL-0002, but that's the one that works.
Be aware that the approvals API was merged into the servicedesk-api with v4, therefore the servicedesk-approvals-api is not available anymore!
Hi, if i do that, then the plugin not start if service desk is not installed, we wanna to import only when Service Desk it is installed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
Have a look at this qeustion:
https://community.developer.atlassian.com/t/how-to-use-jira-service-desk-java-api-in-my-plugin/1981
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The approvals api is not included with the servicedesk-api, actually I was unable to figure out WHERE that api is available!
(if I add that record, then the import of the ApprovalService won't work)
i.e. https://docs.atlassian.com/jira-servicedesk/3.9.1/?_ga=2.75103253.607170755.1552404664-250007471.1516890476
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.