Jira-Api Library from maven does not match with documetation

Znaevm November 14, 2017

I have jira report plugin, and i try get all issues in definite project. 

I try use interface com.atlassian.jira.issue.search.SearchProvider. Documentation describe it

However downloaded from mavens reposetory library does not contatin this interface.

<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>7.5.2</version>
<scope>provided</scope>
</dependency>

image.png

   

1 answer

1 accepted

1 vote
Answer accepted
Aleksandr Zuevich
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 15, 2017

Hi,

as mentioned in the documentation:

WARNING: As of JIRA v7.0, this component has been moved to the Lucene DMZ...

and it is contained in jira-lucene-dmz library actually. To get it you should add jira-core dependency:

<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>7.5.2</version>
<scope>provided</scope>
</dependency>

Suggest an answer

Log in or Sign up to answer