In my project, I have the following dependencies to get all projects and issues from a Jira server:
<!-- https://mvnrepository.com/artifact/com.atlassian.jira/jira-rest-java-client-core -->
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>4.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.atlassian.fugue/fugue -->
<dependency>
<groupId>com.atlassian.fugue</groupId>
<artifactId>fugue</artifactId>
<version>2.5.0</version>
</dependency>
Since April 1. 2019 they do not exist anymore on the Atlassian public repository:
<repositories>
<repository>
<id>atlassian-repo</id>
<name>Atlassian repo for jira java client</name>
<url>https://maven.atlassian.com/content/repositories/atlassian-public/</url>
</repository>
</repositories>
These are the versions currently available for jira-rest-java-client:
5.0.4/ 01-Apr-2019 05:08 - 5.1.0/ 01-Apr-2019 05:08 - 5.1.0-476bd700/ 01-Apr-2019 05:08 - 5.1.0-ed0c5ea/ 01-Apr-2019 05:08 - 5.1.0-f862849/ 01-Apr-2019 05:08 - 5.1.1-e0dd194/ 01-Apr-2019 05:08 - 5.1.2-2bd0a62e/ 01-Apr-2019 05:08 -
Any version that currently exists is breaking the build of my project because they all depend on com.atlassian.platform:platform:pom:3.1.7. Here is the error message:
Could not find artifact com.atlassian.platform:platform:pom:3.1.7 in atlassian-repo (https://maven.atlassian.com/content/repositories/atlassian-public/)
The same thing happens for fugue:
2.7.0/ 01-Apr-2019 06:09 - maven-metadata.xml 01-Apr-2019 06:09 379 bytes
This version depends on com.atlassian.pom:public-pom:pom:3.0.105 which does not exist:
Could not find artifact com.atlassian.pom:public-pom:pom:3.0.105 in atlassian-repo (https://maven.atlassian.com/content/repositories/atlassian-public/)
Is there any way to get access to those missing dependencies on another maven repository, or could you please update the versions of these artifacts?
Thank you! :)
Hey Mario, try adding the following maven repos
https://packages.atlassian.com/maven/repository/public
http://maven.atlassian.com/public
http://download.java.net/maven/2/
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.