Re: Maven repository restricted access.

2009-10-14 Thread Brian Fox
You use server entries in your settings to provide auth to remote repos (Nexus in this case) that maven is talking to. If Nexus is talking to the remote repo, then you configure the authentication in the Nexus proxy repository configuration for that repo. 2009/10/14 David Meunier : > Hi, > > Some

Re: Maven repository restricted access.

2009-10-14 Thread Anders Hammar
Do you mean configuring the credentials? Sure, that's how you do it: http://maven.apache.org/settings.html#Servers The actual repo configuration could go in either your pom or in a profile in settings.xml. /Anders On Wed, Oct 14, 2009 at 16:27, David Meunier wrote: > Hi, > > Some of my remote

Maven repository restricted access.

2009-10-14 Thread David Meunier
Hi, Some of my remote Maven repositories managed by Nexus have restricted access to only allowed users (Basic Auth). I wonder if it was possible to locally configure such a repository in Maven settings.xml or in another way ? Documentation : http://maven.apache.org/settings.html. Best re