Use external dependency in Jira 7.x plugin
Use external dependency in Jira 7.x plugin With the SDK 6.3.10, I am trying to develop a plugin for Jira 7.x. This plugin should use an external Java dependency named "maven-handling". I did the following: First I added the dependency in the POM: <dependency> <groupId>some-company</groupId> <artifactId>maven-handling</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> Then I changed the import-package entry in the maven-jira-plugin to: <Import-Package>org.springframework.osgi.*;resolution:="optional", org.eclipse.gemini.blueprint.*;resolution:="optional", some-company.maven_handling*;version="0.0";resolution:="optional", * </Import-Package> Still I get a classNotFound on the class I use from the some-company.maven_handling package. What did I miss? Is the package some-company.maven_handling* correct? furthermore shouldn...
