[Stat-scm-user] problem with ssl when not needed
Brought to you by:
benoitx,
dougculnane
From: ir. i. J. D. <jan...@gm...> - 2007-05-25 22:05:03
|
Our project (see http://code.google.com/p/beedraz/) is hosted at Google Code. The URL to be used by StatSCM is the url for anonymous access, no? That is <http://beedraz.googlecode.com/svn/trunk/parent-pom>. The developer URL uses SSL. It is <https://beedraz.googlecode.com/svn/ trunk/parent-pom>. This is so declared in the pom: <scm> <connection>scm:svn:http://beedraz.googlecode.com/svn/trunk/$ {beedraz.repositoryModule}</connection> <developerConnection>scm:svn:https://${user.name} @beedraz.googlecode.com/svn/trunk/${beedraz.repositoryModule}</ developerConnection> <url>http://beedraz.googlecode.com/svn/trunk/$ {beedraz.repositoryModule}/</url> </scm> (where ${beedraz.repositoryModule} == "parent-pom") I'm running on Mac OS X 10.4.9, with SVN 1.4.3 installed from http:// downloads.open.collab.net/binaries.html. This distro contains, as far as I know, SSL. The problem I'm having is that, when I do "mvn site", I get a request for a password: ... [INFO] Generate "StatSCM" report. [INFO] StatSCM Generating Source Code Management Metrics. [INFO] Configuring StatXXX [INFO] SCM Connection Type :svn [INFO] Output Directory :/Volumes/Users/jand/Documents/eclipse/ workspace/Beedraz-parent-pom/target/generated-site/xdoc/statscm/ [INFO] scm log > /Volumes/Users/jand/Documents/eclipse/workspace/ Beedraz-parent-pom/target/generated-site/xdoc/statscm/scm.log Password for 'jand': [WARNING] Authentication realm: <https:// beedraz.googlecode.com:443> Google Code Subversion Repository Obviously, <developerConnection> is used. On another computer, where we have an SVN without SSL, we do not get this request. So I presume <connection> is used. I can't give the password, because the user name is my gmail account name, which differs from my unix user name, so whatever I type, it is wrong. Obviously. everybody has a different account name, too. Now, whatever I do in the <developerConnection> URL, nothing works. I have remode ${user.name}@, I have filled out my gmail account name, I have added the password. StatSCM keeps asking the password for my unix account name. Duh? To replicate: $ svn checkout http://beedraz.googlecode.com/svn/trunk/parent-pom parent-pom $ cd parent-pom $ mvn site |