[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.technology.iam] Re: Are dependency exclusions honoured by IAM?
|
- From: Carlos Sanchez <csanchez@xxxxxxxxx>
- Date: Mon, 25 May 2009 21:10:44 -0700
- Newsgroups: eclipse.technology.iam
- Organization: EclipseCorner
- User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1b3pre) Gecko/20090223 Thunderbird/3.0b2
maybe you are getting a previous version of selenium server that was
under another groupId org.seleniumhq.... IIRC
Maven wont exclude it if group and artifact dont match
On 5/25/09 12:28 AM, BenH wrote:
> Im expected that by using the exclusion below, it should prevent
> artefact "selenium.server" from being pulled into the project
> dependencies ("selenium.server" has got problems in its POM, you see).
> But it remains, and "Analyze Dependencies" says that its there due to
> "org.openqa.selenium.client-drivers", ie this dependency.
> Is exclusion is not working, or not implemented?
>
> <dependency>
> <groupId>org.openqa.selenium.client-drivers</groupId>
> <artifactId>selenium-java-client-driver</artifactId>
> <version>1.0-beta-1</version>
> <scope>test</scope>
> <exclusions> <exclusion>
> <groupId>org.openqa.selenium.server</groupId>
> <artifactId>selenium.server</artifactId> </exclusion>
> </exclusions> </dependency>
>
> -Ben
>