Adding maven dependency fro Jira plugin development

lokesh cherukuri April 19, 2018

I am developing a Jira plugin from starter code at https://atlassian_tutorial@bitbucket.org/atlassian_tutorial/jira-scheduled-events.git

I added some third party maven dependencies

        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-client</artifactId>
            <version>1.19</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.2</version>
            <scope>compile</scope>
        </dependency>

When I started Jira, I faced Jira Locked error. When I removed those maven dependencies and restarted again, everything is normal. Jira is working. Where am I going wrong? Is there any special way to add maven dependencies for Jira plugins?

 

Screen Shot 2018-04-19 at 4.08.05 PM.png

1 answer

0 votes
Alexey Matveev
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 19, 2018

Suggest an answer

Log in or Sign up to answer