I'm currently trying to compile SeleniumRC with a patch for solving
authentication problems (
http://wiki.openqa.org/display/SRC/Possible+Solution+to+HTTP+AUTH+Issues
).
The patch involves the use of httpclient.
The page:
http://jakarta.apache.org/commons/httpclient/downloads.html
recommends to add:
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.0.1</version>
<url>http://jakarta.apache.org/commons/httpclient/</url>
</dependency>
into project.xml.
However, when running Maven 2.0.6, I get the error:
Parse error reading POM. Reason: Unrecognised tag: 'url'
meaning that the documentation is wrong !
Of course, if I comment the url tag, it fails during the compilation.
Any idea how to solve this problem ?
JC