Hello,
sorry in advance, I'm not a developer but I have to complete some task -
could anyone please specify how I can use this class in my JAVA code:
com.atlassian.jira.bc.issue.search.SearchService
I've seen a lot of examples, for instance:
https://rozdoum.com/blog_articles/items/how-to-create-JIRA-Spring-Scanner-plugin-from-scratch.html
"import com.atlassian.jira.bc.issue.SearchService"
But I don't even see this class in JIRA public repositories:
https://packages.atlassian.com/mvn/maven-external/com/atlassian/jira/
So I can't create a dependency in POM.xml file
Thank you
The only dependenc you should need is
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
If it won't work, can you post Version of your Jira?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you accept the answer pls?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.