svn authentication with m2 release plugin

2006-05-04 Thread Aaron Anderson
I am using subversion for scm and would like to use the m2 release plugin. I run release:prepare but I always get an "authorization failed" error from svn. After doing a network trace I can that the svn client is sending my operating system credentials (!) instead of my subversion credentials.

Re: svn authentication with m2 release plugin

2011-06-29 Thread lagrangien8
Thank you, this answer resolve my problem since this morning, i was not able to use the mvn release : prepare command due to an authentification problem now it work very well thx -- View this message in context: http://maven.40175.n5.nabble.com/svn-authentication-with-m2-release-plugin

Re: svn authentication with m2 release plugin

2006-05-04 Thread Andrew Kreps
I'm not using SVN, but on the Maven site I found this: Use a different username in the SCM server than he one in the operating system: Run mvn -Duser.name=your_username release:prepare It's on this page: http://maven.apache.org/plugins/maven-release-plugin/howto.html Hopefully that will help

Re: svn authentication with m2 release plugin

2006-05-04 Thread Alexandre Poitras
There is a mistake there, the plugin uses "username" ("user.name" is the OS user in Java). On 5/4/06, Andrew Kreps <[EMAIL PROTECTED]> wrote: I'm not using SVN, but on the Maven site I found this: Use a different username in the SCM server than he one in the operating system: Run mvn -Duser.n

Re: svn authentication with m2 release plugin

2006-05-05 Thread Aaron Anderson
thanks, release:prepare -Dusername=myid =Dpassword=mypassword did the trick Alexandre Poitras <[EMAIL PROTECTED]> wrote: There is a mistake there, the plugin uses "username" ("user.name" is the OS user in Java). On 5/4/06, Andrew Kreps wrote: > I'm not using SVN, but on the Maven

RE: svn authentication with m2 release plugin

2006-05-05 Thread Bravo, Kris
svn authentication with m2 release plugin thanks, release:prepare -Dusername=myid =Dpassword=mypassword did the trick Alexandre Poitras <[EMAIL PROTECTED]> wrote: There is a mistake there, the plugin uses "username" ("user.name" is the OS user in Java).