Maven 联系存储库
Maven Nexus Repository
我在局域网中的一台 PC 上为 Maven 设置了一个私有 Nexus 存储库。我想从局域网中的另一台 PC 连接到同一个 Nexus 存储库。我怎样才能做到这一点?
您必须对已安装的 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
您需要设置设置文件:
http://books.sonatype.com/nexus-book/reference/config-maven.html#ex-maven-nexus-simple
确保使用机器的 IP 地址/名称 运行 Nexus 而不是本地主机。
AFAIK,这应该开箱即用:https://books.sonatype.com/nexus-book/reference/running.html
我在局域网中的一台 PC 上为 Maven 设置了一个私有 Nexus 存储库。我想从局域网中的另一台 PC 连接到同一个 Nexus 存储库。我怎样才能做到这一点?
您必须对已安装的 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
您需要设置设置文件: http://books.sonatype.com/nexus-book/reference/config-maven.html#ex-maven-nexus-simple
确保使用机器的 IP 地址/名称 运行 Nexus 而不是本地主机。
AFAIK,这应该开箱即用:https://books.sonatype.com/nexus-book/reference/running.html