Just putting this dependeny in the pom.xml file of a Jira Plugin crashes the whole application:
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.0.0</version>
</dependency>
First it says :
Failed to execute goal com.atlassian.maven.plugins:jira-maven-plugin:8.1.0:validate-banned-dependencies (default-validate-banned-dependencies) on project aanf-transformer: Some Enforcer rules have failed.
Why is this happening. I cannot execute lifecycle mvn install
@Albert Cameron The error message tells everything, version 5.0.0 has some banned dependencies, and it did not pass the verification.
Please downgrade to the version 4.x.x. This works for me on Jira Server 8.13.4
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
</dependency>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Wow amazing :) At least I can package it now :) What could be reason
<version>5.0.0</version>
is not working. But really thanks :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When I upload it unfortunately I get another error:
Caused by: org.osgi.framework.BundleException: Unable to resolve de.myCompany.area27.myPlugin [269](R 269.0): missing requirement [de.myCompany.area27.myPlugin [269](R 269.0)] osgi.wiring.package; (osgi.wiring.package=com.github.luben.zstd) Unresolved requirements: [[de.myCompany.area27.myPlugin [269](R 269.0)] osgi.wiring.package;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you open the pom.xml file, you will see the <import-package>. Please add the text ;resolution:="optional" after the symbol * as in the code.
<Import-Package>
org.springframework.osgi.*;resolution:="optional",
org.eclipse.gemini.blueprint.*;resolution:="optional",
*;resolution:="optional"
</Import-Package>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
wow. cool . It looks like the last line *;resolution:="optional" made the difference . All the other was already in my pom.xml .
This is some configuration from the jira-maven-plugin which caused all the trouble. Thanks a lot :)
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.