2015-07-28 242 views
0

我有一個專用的Nexus存儲庫,爲我的局域網中的一臺PC上的Maven設置。我想從局域網中的另一臺PC連接到同一個Nexus存儲庫。我怎樣才能做到這一點?Maven Nexus存儲庫

回答

0

您需要安裝設置文件: http://books.sonatype.com/nexus-book/reference/config-maven.html#ex-maven-nexus-simple

確保使用運行而不是本地主機的Nexus IP地址/機器的名稱。

AFAIK,這應該工作外的開箱:https://books.sonatype.com/nexus-book/reference/running.html

+0

如果需要用戶名和密碼才能連接,該怎麼辦?我可以連接到在另一臺計算機上創建的存儲庫,而無需使用Nexus? – user

+0

我還沒試過。您可以嘗試設置文件中的服務器部分,但我認爲它不會起作用。否則,請嘗試將用戶名和密碼指定爲URL的一部分(例如,https://用戶名:密碼@ your-machine:8081/nexus/content/groups/public)。確保你使用的是HTTPS,所以你不會通過網絡以純文本發送passords:https://books.sonatype.com/nexus-book/reference/ssl-sect-ssl-direct.html – Puce

+0

我試過了你的方法和它的工作。謝謝 – user

0

您必須對安裝的Maven/confsetting.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

+0

能否請你告訴我做什麼樣的變化? – user

+0

查看編輯答案 –

相關問題