I couldn't find the class AbstractJqlFunction

xin huang February 18, 2013

Is any jar need I to manual Import?

I refere the http://www.novagenia.com/blog/en/2011/11/17/50/ to create an project.

1 answer

1 accepted

2 votes
Answer accepted
Andris Bērziņš
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.
February 18, 2013

You are most likely missing some dependencies from the pom.xml file.

Try adding this dependency:

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

Then you'll have to recreate the eclipse plugin. You can do it with this command: atlas-mvn eclipse:clean eclipse:eclipse

After libraries have been downloaded, check if you can now see those imports.

Suggest an answer

Log in or Sign up to answer