mvn:install to place my jar in nexus remote repository
问题 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 回答1: 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