如何将jfrog artifactory中的jar文件导入Jenkins. m2存储库?

yhuiod9q  于 2023-01-25  发布在  Jenkins
关注(0)|答案(1)|浏览(182)

我有一个Jfrog Artifactory安装,其中有一些工件。我想把这些工件拉到我的Jenkins .m2仓库中。我对Jenkins了解不多。

sauutmhj

sauutmhj1#

只要您正确地配置了maven remote repository settings,maven就会在构建过程中解析工件并将它们放在本地repo中。
或者(不推荐),您可以使用curl或wget和mvn install:install-file -Dfile=<path-to-file> ...,但这是毫无意义的,而且比让maven做maven做的工作要多。
如果你不想把recommendations for settings放在你的存储库的settings.xml中,Cloudbees有recommendations for settings;S/O answer有一些建议,pipeline-maven pluginJenkins Docs也是如此。

相关问题