It's possible to put binary files on nexus repository?

独自空忆成欢 提交于 2019-11-27 23:41:34

问题


At my work all development uses Java technology, and we use Nexus to manage our Maven repositories. But for a new project, the build requires dll and exe artifacts. Is it possible to put those windows binary files into a Nexus repository? Is there some plugin to make this simpler? Is what I'm trying to do crazy?


回答1:


I use Nexus to store all the binary dependencies that I download from the internet.

You can upload the files using the Nexus GUI or use the Maven command line as follows:

mvn deploy:deploy-file \
    -Durl=$REPO_URL \
    -DrepositoryId=$REPO_ID \
    -DgroupId=org.apache.maven \
    -DartifactId=maven \
    -Dversion=2.2.1  \
    -Dpackaging=zip \
    -Dfile=maven.zip

This will generate the POM for your zip package automatically.

To retrieve dependencies, you can just navigate to the Nexus URL, or use a generic dependency manager tool like ivy:

java -jar ivy.jar -dependency org.apache.maven maven 2.2.1 -retrieve [artifact].[ext]


来源:https://stackoverflow.com/questions/3662465/its-possible-to-put-binary-files-on-nexus-repository

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!