我有一个Jfrog Artifactory安装,其中有一些工件。我想把这些工件拉到我的Jenkins .m2仓库中。我对Jenkins了解不多。
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 plugin和Jenkins Docs也是如此。
mvn install:install-file -Dfile=<path-to-file> ...
1条答案
按热度按时间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 plugin和Jenkins Docs也是如此。