Backward compatibility JIRA REST Java Client with 4.4.5

Viktor Dlouhý
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.
August 20, 2015

Hello there,

I am trying to use JRJC with JIRA version 4.4.5. But it seems the jrjc versions from 2.0.0-m4 to 3.0.0 cannot really work with given REST API. The problem is it sends and expects back "expand" parameter using jqlSearch, which is not implemented in JIRA 4.4.5

 

Any ideas?

1 answer

1 accepted

0 votes
Answer accepted
Viktor Dlouhý
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.
August 20, 2015

Only solution I found is to use older version of JRJC.

So instead of:

<dependency>
	<groupId>com.atlassian.jira</groupId>
	<artifactId>jira-rest-java-client-api</artifactId>
	<version>3.0.0</version>
</dependency>
<dependency>
	<groupId>com.atlassian.jira</groupId>
	<artifactId>jira-rest-java-client-core</artifactId>
	<version>3.0.0</version>
</dependency>

use:

<dependency>
	<groupId>com.atlassian.jira</groupId>
	<artifactId>jira-rest-java-client</artifactId>
	<version>2.0.0-m2</version>
</dependency>

Suggest an answer

Log in or Sign up to answer