Need atlassian-jira-6.1.6.jar for plugin compilation

Rahul K January 20, 2014

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.

1 answer

1 vote
Andy Brook [Plugin People]
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.
January 20, 2014

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events