You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello,
I am migrating a custom plugin from JIRA 5.1 to JIRA 6.1.6. I have udpated my pom.xml to jave jira.version = 6.1.6. While compiling the plugin, I get an error saying the atlassian-jira-6.1.6.jar cannot be downloaded.
Embedded error: Missing: 1) com.atlassian.jira:atlassian-jira:jar:6.1.6 Try downloading the file manually from the project website.
Also, this location https://maven.atlassian.com/repository/public/com/atlassian/jira/atlassian-jira/does not contain 6.1 related jars.
Has the JIRA repository changed?
Thanks for you help.
The libraries have changed, now you should use the API:
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
And only if needed, the core:
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
Browse for versions @ https://maven.atlassian.com/content/groups/public/com/atlassian
Happy New Year! We hope you all had a safe and restful holiday season. 2020 was a unique year full of unforeseen events; however, as we enter the new year of 2021, we’re optimistic for the light at t...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.