Gerard,
Use an exclusion like such:
<dependency>
<groupId>org.acegisecurity</groupId>
<artifactId>acegi-security</artifactId>
<version>1.0.3</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-remoting</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
</exclusions>
</dependency>
Eric
On Thu, 2007-09-06 at 12:34 -0400, Gerard Lancome wrote:
> Hi there,
>
> I'm testing a new little project that uses the Spring Framework and
> Acegi Security. This the relevant section from the pom (which is
> attached, BTW)
>
> <dependency>
> <groupId>org.springframework</groupId>
> <artifactId>spring</artifactId>
> <version>2.0.6</version>
> </dependency>
>
> <dependency>
> <groupId>org.acegisecurity</groupId>
> <artifactId>acegi-security</artifactId>
> <version>1.0.4</version>
> </dependency>
>
> <dependency>
> <groupId>org.acegisecurity</groupId>
> <artifactId>acegi-security-tiger</artifactId>
> <version>1.0.4</version>
> </dependency>
>
> When I issue a 'mvn package' I see that spring-2.0.6.jar is included
> (because I asked it to) and several spring-*-2.0.4 jars, which are
> needed by Acegi. How can I tell Acegi that I already have the Spring
> dependency covered (alberit with a newer one)?
>
> Best regards,
> Gerard.
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]