无法检测到要发送到的 AMPS 插件

Couldn't detect an AMPS plugin to dispatch to

我目前正在创建 JIRA 插件。 将 AMPS 从 6.3.15 升级到 8.0.0 并 运行ning atlas-debug / atlas-run 后,我收到以下 Maven 错误:

[ERROR] Failed to execute goal com.atlassian.maven.plugins:amps-dispatcher-maven-plugin:8.0.0:debug (default-cli) on project soc-sync: Couldn't detect an AMPS plugin to dispatch to -> [Help 1]

我需要做什么才能再次 运行 我的 JIRA 插件?

随着 AMPS 8.0.0 的引入,atlassian 工具的 maven 插件已重命名:https://ecosystem.atlassian.net/browse/ATLASSDK-147

以前 maven-jira-plugin 现在是 jira-maven-plugin:

<build>
    <plugins>
        <plugin>
            <groupId>com.atlassian.maven.plugins</groupId>
            <artifactId>jira-maven-plugin</artifactId> <!-- change here, was maven-jira-plugin -->
            <version>8.0.0</version> <!-- upgrade this or the amps.version property to 8.0.0 -->
            <extensions>true</extensions>
            <configuration>
                ...
            </configuration>
        </plugin>
        ...
    <plugins>
    ...
<build>

一般规则似乎是:maven-XYZ-plugin 现在是 XYZ-maven-plugin