0

我已经开发了一个 Maven插件,我需要将它上传到 jFrog 以便我的团队可以使用它。当然,我可以使用jar并分发它,但由于它是一个严肃的项目,我们选择 jFrog 作为中央存储库。

我面临的问题有点令人困惑。如前所述,当我将jar闪存驱动器中的插件 (a) 转移给另一个队友并运行该插件时,它运行良好,没有任何故障。但是,将其上传到 jFrog 后,在尝试运行插件时出现此错误。

[ERROR] Plugin com.XXXX:XXXX:1.0 or one of its dependencies could not be resolved: Failure to find com.XXXX:XXX:jar:1.0 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException

.m2我在尝试做 a 时检查了我的目录,但mvn clean install我没有.jar进入我的.m2.

我还尝试使用.jar从 jFrog 作为依赖项获取<dependencies> .. </dependencies>,并且.jar按预期下载了;但是,当我.jar使用配置将其添加为插件时<plugin>...</plugin>,出现了同样的错误。

总而言之,我的插件在我的本地机器上运行良好(当我传输 jar 而不将其上传到 jFrog 时运行良好)但在尝试.jar从 jFrog 下载并尝试在此后执行它时出现此错误。

如果有人可以帮助我,那将是一个很大的帮助。

4

1 回答 1

0

在配置额外的 maven 存储库时,对于 maven 依赖项,使用如下配置,

   <repositories>
        <repository>
            <id>repo-id</id>
            <url>repository-url</url>
        </repository>
    </repositories>

对于 maven 插件,必须添加单独的配置pom.xml才能运行远程存储库插件。

    <pluginRepositories>
        <pluginRepository>
            <id>repo-id</id>
            <url>repository-url</url>
        </pluginRepository>
    </pluginRepositories>
于 2018-11-06T05:50:56.243 回答