I try to make a connection to Jira
My Code:
....
JiraRestClientFactory restClientFactory = new AsynchronousJiraRestClientFactory();
JiraRestClient restClient = restClientFactory.createWithBasicHttpAuthentication(uri, user, password);
....
I have the following error:
exception
javax.servlet.ServletException: Servlet execution threw an exception
...
root cause
java.lang.UnsupportedClassVersionError: Bad version number in .class file (unable to load class com.atlassian.jira.rest.client.api.JiraRestClientFactory)
...
I use these libs (and the needed dependencies):
jira-rest-java-client-api-2.0.0-m25.jar
jira-rest--java-client-core-2.0.0-m25.jar
I use in my project the jdk version 1.5. What is the required jdk version for the class 'AsynchronousJiraRestClientFactory()'?
Exists a other possibility to connect with Jira (with jdk 1.5)? I use the class 'AsynchronousJiraRestClientFactory()', because the class 'JerseyJiraRestClientFactory' ist not included (tutorial).
Currently the most recent versions of JIRA will run on JDK 1.6 and 1.7. 1.5 is no longer used, neither supported for a while already.
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.