Hi,
I need to help,
I have a problem.
When I view API Reference of JIRA in https://developer.atlassian.com/static/javadoc/jira/6.0.8/reference/packages.html
I found class com.atlassian.jira.web.action.project,
BUT,
When I import plugin in Eclipse , I don't found class com.atlassian.jira.web.action.project,
Thanks,
AFAIK, com.atlassian.jira.web.action.project is in jira-core. Try adding it to your dependencies:
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you have to import like
import com.atlassian.jira.web.action.project.*;
because " com.atlassian.jira.web.action.project" represents package
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.
don't forgot to accept as a answer if something helped to you!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks rambanam prasad
BUT
dependencies in my pom.xml
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what are the dependencies are added in your pom.xml?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.