The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Why is Jira core dependeny so bad ?

Albert Cameron
August 3, 2021

Just adding this dependeny leads to my plugin not working anymore. 

<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>8.3.1</version>
</dependency>

I am not even using any classes of this dependency.

Why is that ?

Error in log:

(version=9.0)) Unresolved requirements: [[de.mycompany.area.project [279](R 279.0)] osgi.ee; (&(osgi.ee=JavaSE)(version=9.0))]

 

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Albert Cameron
August 3, 2021

Looks like

<scope>provided</scope>

was missing.

Why is scope provided needed ?? 

Maybe the problem is that on Jira System some other jira-core version is installed. So it could mess with my jira-core version. 

Does that make sense ?