可以将二进制文件放在 Nexus 存储库上吗?
在我的工作中,所有开发都使用 Java 技术,并且我们使用 Nexus 来管理我们的 Maven 存储库。但对于新项目,构建需要 dll 和 exe 工件。是否可以将这些 Windows 二进制文件放入 Nexus 存储库中?有没有一些插件可以让这个更简单?我想做的事很疯狂吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 Nexus 来存储从互联网下载的所有二进制依赖项。
您可以使用 Nexus GUI 上传文件或使用 Maven 命令行,如下所示:
这将自动为您的 zip 包生成 POM。
要检索依赖项,您只需导航到 Nexus URL,或使用像 ivy 这样的通用依赖项管理器工具:
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:
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: