无法检测到要分配给的AMPS插件

luk*_*302 2 jira maven jira-plugin atlassian-plugin-sdk

我目前正在创建JIRA插件。升级从6.3.15安培到8.0.0并运行后atlas-debug/ atlas-run我得到迎接行家错误:

[错误]无法在项目soc-sync项目上执行目标com.atlassian.maven.plugins:amps-dispatcher-maven-plugin:8.0.0:debug(default-cli):无法检测到要分发给的AMPS插件 - > [帮助1]

我必须怎么做才能再次运行JIRA插件?

luk*_*302 7

随着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>
Run Code Online (Sandbox Code Playgroud)

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