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>
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>
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.