I'm generating a maven settings.xml for this scenario with nexus:
- my-releases-repo
- my-snapshots-repo
both into my-group and I have a role which allows the user to crud on my-group.
So, in settings.xml is defined the server, with id as my-group and it's corresponding user and passwd. Of course is defined too the repository into an a active profile, as this:
<repositories>
<repository>
<id>my-group</id>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
<url>http://my.nexus.corp/content/groups/my-group</url>
</repository>
With this configuration the user is able to authenticate to both repositories and download artifact from them, but not to deploy.
Finally the question is: the server authentication provided in settings.xml applies only for read,view methods when it's defined for a repository group?
Of course, if I add servers pointing to each repository-id (without adding these repositories on profile, only keeping my-group) the deploy works.
My idea is to provide a simplier settings.xml using repository group authentication, avoiding to set the password for each server (repo) because it's the same user.