Can't get sdk v8.0.7 Jira to run as Jira version 8.0.x ALWAYS runs as v 7.13

r April 2, 2019

Installed the Jira SDK version 8.0.7 - the latest.

Yet when I run atlas-run,  the Jira that comes up is version 7.13

According to Atlassians version list web page updated 3/19,  v8.0.2 is the latest version of Jira.

Also tried  atlas-run --product jira --version 8.0.2 --data-version 8.0.2

Alsotried changing jira.version to 8.0.2 in pom.xml file.

Still comes up as Jira version 7.13

What is needed to get this thing to run version 8?

 

 

1 answer

1 accepted

1 vote
Answer accepted
Rafael Pinto Sperafico
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.
April 2, 2019

Hi @r ,

Perhaps it is a configuration issue on your "pom.xml" file. Please, have a look if you have the following:

<properties>
<jira.version>7.11.2</jira.version>
<jira.data.version>7.11.2</jira.data.version>
...
</properties>

<build>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-jira-plugin</artifactId>
<version>${amps.version}</version>
<extensions>true</extensions>
<configuration>
<productVersion>${jira.version}</productVersion>
<productDataVersion>${jira.data.version}</productDataVersion>
...
</configuration>
</plugin>
...
</plugins>
</build>

Then you can run the command:

atlas-run --product jira --version 8.0.2 --data-version 6.4.14

And in the logs you should find:

[INFO] Starting jira...
[INFO] Configured Artifact: com.atlassian.jira.plugins:jira-plugin-test-resources:6.4.14:zip
...
[INFO] Configured Artifact: com.atlassian.jira:atlassian-jira-webapp:8.0.2:war
Downloading from sdk-maven-external: https://packages.atlassian.com/maven-external/com/atlassian/jira/atlassian-jira-webapp/8.0.2/atlassian-jira-webapp-8.0.2.war

For more information:

Kind regards,
Rafael

r April 3, 2019

Thanks.  I did get v 8.0.0 running as per your suggestion.

Suggest an answer

Log in or Sign up to answer