Not able to import some com.atlassian.jira.issue.statistics classes

Saurabh Rajendra October 2, 2013

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:

  • The import com.atlassian.jira.issue.statistics.StatsGroup cannot be resolved
  • The import com.atlassian.jira.issue.statistics.util.OneDimensionalDocIssueHitCollector cannot be resolved
  • The import com.atlassian.jira.web.bean.FieldVisibilityBean cannot be resolved

For these, do I need to include any jar?

Please share your knowledge.

Thanks,

Saurabh Rajendra

1 answer

1 accepted

2 votes
Answer accepted
MB
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.
October 2, 2013

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.

Saurabh Rajendra October 2, 2013

Still it is not working.

MB
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.
October 2, 2013

I'm not sure if you did everything right, but you should first:

  • shut down your running JIRA instance
  • uncomment that dependency in your pom.xml file
  • run "atlas-clean", "atlas-mvn clean" and "atlas-mvn eclipse:clean"
  • run "atlas-mvn eclipse:eclipse" (if you want to refresh your eclipse project)
  • run "atlas-run"

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.

Saurabh Rajendra October 6, 2013

Thank you so much.

It is working now.

Suggest an answer

Log in or Sign up to answer