我知道如何爲Maven設置settings.xml來訪問Nexus。但是是否有可能讓m2eclipse使用Windows帳戶訪問Nexus?因爲用戶需要將他們的帳戶放在setting.xml中是不方便的。 Anogher問題是安全問題,我知道如何加密密碼(Maven Password Encryption),但它確實不方便。m2eclipse(Maven)可以使用Windows帳戶訪問Nexus嗎?
<servers>
<server>
<id>nexus-releases</id>
<username>xxx</username>
<password>xxx</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>xxx</username>
<password>xxx</password>
</server>
</servers>
但是當我們從Eclipse構建它時,我們不需要在proxy.xml中放置代理的用戶名/密碼。我認爲Eclipse(m2eclipse)有能力獲得它? – Dennys
這不是Maven密碼的使用方式。它需要明文或加密通過Maven加密。 –
謝謝,我認爲令牌是一個很好的解決方案,我會嘗試它。 – Dennys