Hi,
I have installed the latest atlassian-plugin-sdk-8.0.16 and trying to develop a plugin for jira. I created a new plugin template using the below command.
atlas-create-jira-plugin
And it generated the following pom properties.
<properties>
<jira.version>7.6.1</jira.version>
<amps.version>6.3.14</amps.version>
<plugin.testrunner.version>1.2.3</plugin.testrunner.version>
<atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>
<!-- This key is used to keep the consistency between the key in atlassian-plugin.xml and the key to generate bundle. -->
<atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
<!-- TestKit version 6.x for JIRA 6.x -->
<testkit.version>6.3.11</testkit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
I would like to create a plugin with jira 8.2.3 version. In this case, how can I get the correct pom properties with jira 8.2.3 version?
Thanks,
Kumar