Hi,

add the <exclusions> tag to your <dependency>
and put the artifacts you want to exclude.

<dependency>
<groupId>acegisecurity</groupId>
<artifactId>acegi-security</artifactId>
<version>0.9.0</version>
<scope>runtime</scope>
<exclusions>
 <exclusion>
    <groupId>groupId-of-the-artifact</groupId>
    <artifactId>artifactId-of-the-artifact</artifactId>
 </exclusion>
</exclusions>
</dependency>

regards,
-allan

Eric Jacob wrote:

But what about acegi-security-0.9.0.jar? I need it in my webapp.

Thanks.

Eric

On 11/18/05, Pablo <[EMAIL PROTECTED]> wrote:
Eric Jacob wrote:

Hi,

Putting the following dependency results in 72 jars downloaded in
WEB-INF/lib!

<dependency>
<groupId>acegisecurity</groupId>
<artifactId>acegi-security</artifactId>
<version>0.9.0</version>
<scope>runtime</scope>
</dependency>


Hi

If you set <scope>provided</scope> then these dependencies will not be
included in /WEB-INF/lib

Cheers
Pablo

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



------------------------------------------------------------------------

No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.362 / Virus Database: 267.13.3/174 - Release Date: 11/17/2005

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to