I know how to set settings.xml for Maven to access Nexus. But is it possible to let m2eclipse to use Windows account to access Nexus? Because it's not convenient that users needs to put their account in settingx.xml. Anogher issue is security, I know how to to encrypt the password ( Maven Password Encryption), but it's really not convenient.
<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>
The best option is to use the User Token feature of Nexus Professional. You still have to have the token (but not the username and password from the active directory/windows sign on) in your settings.xml but you can use the Nexus Maven Plugin to get it updated each time you change the Windows password and reset the Nexus user token as required. So you can basically automate it cleanly.