我正在https://atlassian_tutorial@bitbucket.org/atlassian_tutorial/jira-scheduled-events.git
的初学者代码中开发Jira插件我添加了一些第三方maven依赖项
<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>
当我开始Jira时,我遇到了Jira Locked错误。当我删除那些maven依赖项并重新启动时,一切正常。吉拉正在工作。我哪里错了?是否有任何特殊方法为Jira插件添加maven依赖项?