I'm updating my jira
plugin to be compatible with Jira 10
release.Everything is updated as they mention in their documentation but now I have this issue :
missing requirement osgi.wiring.package; (&(osgi.wiring.package=com.atlassian.plugin.web.model)(version>=7.2.0)(version<=7.2.0))
I do have the dependency in the pom.xml
like following :
<dependency><groupId>com.atlassian.plugins</groupId><artifactId>atlassian-plugins-webfragment</artifactId><version>7.2.0</version><scope>provided</scope></dependency>
and in the plugin as follows :
<plugin><groupId>org.apache.felix</groupId><artifactId>maven-bundle-plugin</artifactId><version>6.0.0</version><extensions>true</extensions><configuration><instructions><Import-Package> com.atlassian.plugin.web.model;version="[7.2.0,7.2.0]", *</Import-Package></instructions></configuration></plugin>
And yet still the error persists.
PS: there is no mention that the package is removed in Jira 10.