我在局域网中的一台PC上为Maven设置了一个专用的Nexus存储库。我想从LAN中的另一台PC连接到相同的Nexus存储库。我怎么能做到这一点?
答案 0 :(得分:0)
您必须在已安装的Maven/conf
和setting.xml
文件中进行更改,以及下面我为Artifactory所做的更改。
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>remote-repos</name>
<url>http://localhost:8081/artifactory/remote-repos</url>
</pluginRepository>
<pluginRepository>
<snapshots />
<id>snapshots</id>
<name>remote-repos</name>
<url>http://localhost:8081/artifactory/remote-repos</url>
</pluginRepository>
</pluginRepositories>
仅供参考,请查看https://support.sonatype.com/entries/20943003-Configure-Maven-to-Download-from-Nexus
答案 1 :(得分:0)
您需要设置设置文件: http://books.sonatype.com/nexus-book/reference/config-maven.html#ex-maven-nexus-simple
确保使用运行Nexus而非localhost的计算机的IP地址/名称。
AFAIK,这应该是开箱即用的:https://books.sonatype.com/nexus-book/reference/running.html