The import com.atlassian.jira.event.issue.MentionIssueCommentEvent cannot be resolved

mostafa jamareh September 22, 2013

I'm writing a plugin for jira in version 5.0.5

and I want to use MentionIssueCommentEvent in my project

and as this doc said this package (com.atlassian.jira.event.issue.MentionIssueCommentEvent) is available for jira 5.0.5.

but when i attempt to import it in my plugin it gives me this error:

The import com.atlassian.jira.event.issue.MentionIssueCommentEvent cannot be resolved

what can i do to resolve this problem?

thanks in advance,

2 answers

1 accepted

0 votes
Answer accepted
Jobin Kuruvilla [Adaptavist]
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.
September 22, 2013

Are you trying to catch the "issue moved" event? If so, following this listener tutorial.

https://developer.atlassian.com/display/JIRADEV/Writing+JIRA+Event+Listeners+with+the+atlassian-event+Library

You can check the event id to ISSUE_MOVED_ID instead of events given in the example.

mostafa jamareh September 22, 2013

thanks jobin

there was a problem in my atlassian-plugin.xml

0 votes
RambanamP
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.
September 22, 2013

did you added following dependencies to your pom.xml

<dependency>
            <groupId>com.atlassian.jira</groupId>
            <artifactId>jira-api</artifactId>
            <version>${jira.version}</version>
            <scope>provided</scope>
        </dependency>
         
        <dependency>
            <groupId>com.atlassian.jira</groupId>
            <artifactId>jira-core</artifactId>
            <version>${jira.version}</version>
            <scope>provided</scope>
        </dependency>

mostafa jamareh September 22, 2013

thanks rambanam

yes i did

Suggest an answer

Log in or Sign up to answer