Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

plugin for version Jira 8.x

integmas April 28, 2020

Hello All,

I am trying to develop a plugin for version 8.x.

Going through the examples, most of them are using 6.x or 7.x. I was wondering is there a document which gives the compatible versions for the dependencies for  8.x.

I am currently using

<properties>
<jira.version>8.0.2</jira.version>
<amps.version>8.0.2</amps.version>
<plugin.testrunner.version>1.2.3</plugin.testrunner.version>
<atlassian.spring.scanner.version>2.2.0</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>

 

1 answer

0 votes
Andy Heinzer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 12, 2020

Hi,

I understand that you're trying to build a plugin for Jira Server, but you're running into some problems.  I am afraid I don't know which document you are trying to follow here.  Could you please let me know what URL you are using when trying to follow the guide?

I expect that our guide in Set up the Atlassian Plugin SDK and build a project should still be up to date for Jira 8 versions.  However if this is the guide you are following, please let me know.  I would be interested in determining if we have any out of date documentation on our site.

On a side note, you might have a more focused audience over in our Developer Community https://community.developer.atlassian.com/ for these kinds of development type questions.  I'll be happy to try to help as best I can, but admittedly, I'm not a wizard at building plugins.

Regards,

Andy

integmas May 14, 2020

Hi Andy, thanks for the reply, yes i followed those docs, they seems to still have version 7 so i changed to the following and that seems to work.

I will use Developer Community if i encounter anymore issues. Thanks.

 

<properties>
<jira.version>8.6.1</jira.version>
<amps.version>8.0.2</amps.version>
<plugin.testrunner.version>2.0.1</plugin.testrunner.version>
<atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>
<!-- This property ensures consistency between the key in atlassian-plugin.xml and the OSGi bundle's key. -->
<atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
<spring.version>5.0.10.RELEASE</spring.version>
<jackson.version>2.11.0</jackson.version>
<!-- 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>

Suggest an answer

Log in or Sign up to answer