mvn:install 将我的 jar 放在 Nexus 远程存储库中
我在 eclipse (m2 eclipse) 中使用 maven
当我执行 mvn:install 时,我希望将我的 jar(artifact) 安装在位于服务器上的 nexus 存储库中(现在安装的 jar 放置在本地系统存储库中) ..我该怎么做?
我什至将其更改为我的本地存储库地址
I am using maven in eclipse (m2 eclipse)
When i execute mvn:install i want my jar(artifact) to be installed in the nexus repository which is located on the server(right now the installed jar is placed in the local system repository).. how can i do that ?
I even changed this to my local repository address
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您会使用
mvn deploy
部署到非本地存储库。当然,您需要在 Maven settings.xml 或项目 POM 中配置存储库。
由于我们始终使用相同的内部存储库,因此我在 Maven settings.xml(更准确地说是“配置文件”部分)中完成了此操作。
这是我的配置供参考:
Typically, you'd use
mvn deploy
to deploy to a non-local repository.You will, of course, need to have the repo configured, either in your maven settings.xml or in the project POM.
As we always use the same internal repo, I've done this in the Maven settings.xml, more precisely, the "profiles" section.
Here is my config for reference: