Hi,
I have this app that is compatibale with jira 9 and now on trying to make it jira 10 compatible, i am getting lots of issues around dependencies and am not particularly able to resolve this one
Cannot start plugin: com.mycode.issue-feature
[INFO] [talledLocalContainer] Unable to resolve com.mycode.issue-feature [182](R 182.0): missing requirement [com.mycode.issue-feature [182](R 182.0)] osgi.wiring.package; (osgi.wiring.package=com.atlassian.servicedesk.api.approval) Unresolved requirements: [[com.mycode.issue-feature [182](R 182.0)] osgi.wiring.package; (osgi.wiring.package=com.atlassian.servicedesk.api.approval)]
My original POM, does not even involve ServiceDesk. It has only depenedencies with jira core
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
Anyone knows how best to handle this dependency. I tried several options including
<!-- https://mvnrepository.com/artifact/com.atlassian.servicedesk/jira-servicedesk-api -->
<dependency>
<groupId>com.atlassian.servicedesk</groupId>
<artifactId>jira-servicedesk-api</artifactId>
<version>10.3.2</version>
<scope>provided</scope>
</dependency>
I have a feeling that I dont even have a require,emnt for the servicedesk but it somehow gets in my build.