Atlassian JSD插件开发(找不到依赖和插件)

Atlassian JSD plugin development (dependencies and plugins cannot be found)

我是 Atlassian 开发的新手,我已经完成了插件开发的 guides/tutorials 并且一切正常(我使用 Ubuntu 和 IntelliJ 作为 IDE ).另请阅读 "Jira 7 Development Cookbook - Third Edition"。当我尝试切换到 JSD 开发时,依赖项和插件不起作用。我收到这样的错误:

Dependency : 'com.atlassian.jira.plugins:project-templates-api:2.18' not found

Plugin : 'com.atlassian.plugin:atlassian-spring-scanner-maven-plugin:2.0.1' not found

我正在 guides from the official site 开发指南的那一部分。我查看了 API 插件和 类 的文档,并尝试更改插件的版本 and/or 名称,但我总是遇到同样的错误。我是否忽略了一些重要的事情,或者这是经常发生并且有解决方案的事情?

编辑:

不要使用

 atlas-mvn idea:idea 

正如drelliot所说。 您必须在 pom.xml 上手动添加依赖项和插件并执行

 atlas-mvn install 

我仍然有错误,但大多数都已解决。

不要使用

atlas-mvn idea:idea 

正如 drelliot 所说。您必须在 pom.xml 上手动添加依赖项和插件并执行

atlas-mvn install 

之后只需将项目导入您选择的 IDE。我仍然有包和版本的错误,因为官方教程已经过时并且没有太大帮助,但大多数都由此解决了。