Hi,
I am trying to create JIRA report, using some Java APIs.
I am referring to a documentation of Creating a JIRA report.
I have followed all the steps mentioned in the document, but at one step while writing the code in eclipse, I am getting below error:
For these, do I need to include any jar?
Please share your knowledge.
Thanks,
Saurabh Rajendra
Community moderators have prevented the ability to post new answers.
You need to first uncomment this in your pom.xml file:
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
I hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure if you did everything right, but you should first:
That way you will clean the cache and rebuild your plugin, which will successfully include all those classes in the project. For more info, take a look at this question too.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.