Hello,
I'm trying to integrate JIRA via REST API using this guide
https://www.baeldung.com/jira-rest-api
It already fails at the second step, where I enter the dependencies in the pom.xml.
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>com.atlassian.fugue</groupId>
<artifactId>fugue</artifactId>
<version>2.6.1</version>
</dependency>
As an error I get the following message in IntelliJ Console:
Dependency 'com.atlassian.jira:jira-rest-java-client-core:4.0.0' not found
Dependency 'com.atlassian.fugue:fugue:2.6.1' not found
What am I doing wrong?
Or is the tutorial outdated and would you recommend a different one?
Can you share your entire pom.xml content?
also, try to use updated versions:
Replace 4.0.0 with 5.2.4
Replace 2.6.1 with 5.0.0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.