Hi all ,
I am getting this error for custom plugin
java.lang.NoClassDefFoundError: com/atlassian/jira/JiraException
Thanks
Sai Krishna
Hi, usually such error are due to dependencies inconsistencies. What is the scope of your jira-api dependency in your pom.xml? Is it provided?
<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.
When do you get this error? Do you extend JiraException in any own class?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
when I trying upload plugin or enabling it . no I am not extending JiraException
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.
Hi,
I'm afraid we can't get definite help without your sources.
My assumption: it's due to dependencies. Maybe you use some library which is dependent on other library contains JiraException class.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same problem is any solution? Try to use jql query in my Issue tab plugin and have
java.lang.ClassNotFoundException: com.atlassian.jira.issue.search.SearchException not found by com.jira.plugin.IssueTab.Panel
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.