0

我在 sonatype 中为 atlassian repo 配置了一个代理,如下所示:

Remote Storage Location: https://maven.atlassian.com/repository/public/

当我尝试使用该插件时,它不会从 pom 中获取我的插件配置,并且我看到此错误:

[WARNING] The POM for com.atlassian.maven.plugins:maven-jgitflow-plugin:jar:1.0-m5.1 is missing, no dependency information available
[WARNING] Failed to retrieve plugin descriptor for com.atlassian.maven.plugins:maven-jgitflow-plugin:1.0-m5.1: Plugin com.atlassian.maven.plugins:maven-jgitflow-plugin:1.0-m5.1 or one of its dependencies could not be resolved: Failure to find com.atlassian.maven.plugins:maven-jgitflow-plugin:jar:1.0-m5.1 in https://<my local maven server>/content/groups/internal was cached in the local repository, resolution will not be reattempted until the update interval of <servername> has elapsed or updates are forced
4

1 回答 1

1

事实证明 groupId/artifactId 不正确。我的工作条目是

                <plugin>
                    <groupId>external.atlassian.jgitflow</groupId>
                    <artifactId>jgitflow-maven-plugin</artifactId>
                    <version>1.0-m5.1</version>
                </plugin>
于 2015-08-07T14:34:31.337 回答