Hi.

>  i have a project that uses maven2 and i have some dependencies on agecy 
> security framework
> 
> can anyone tell me what is the correct dependency to list in my pom.xml?

Below are my dependencies.
I generaly exclude everything sine my project already depends on the right 
artifacts and versions.
I also don't use a couple of features like ds so I exclude them as well.

                <dependency>
                        <groupId>org.acegisecurity</groupId>
                        <artifactId>acegi-security</artifactId>
                        <version>1.0.1</version>
                        <exclusions>
                                <exclusion>
                                        <groupId>org.springframework</groupId>
                                        <artifactId>spring-remoting</artifactId>
                                </exclusion>
                                <exclusion>
                                        <groupId>org.springframework</groupId>
                                        <artifactId>spring-jdbc</artifactId>
                                </exclusion>
                                <exclusion>
                                        <groupId>org.springframework</groupId>
                                        <artifactId>spring-support</artifactId>
                                </exclusion>
                                <exclusion>
                                        <groupId>org.springframework</groupId>
                                        <artifactId>spring-mock</artifactId>
                                </exclusion>
                                <exclusion>
                                        <groupId>cas</groupId>
                                        <artifactId>casclient</artifactId>
                                </exclusion>
                                <exclusion>
                                        <groupId>aspectj</groupId>
                                        <artifactId>aspectjrt</artifactId>
                                </exclusion>
                                <exclusion>
                                        
<groupId>org.apache.directory.server</groupId>
                                        <artifactId>apacheds-core</artifactId>
                                </exclusion>
                                <exclusion>
                                        <groupId>org.slf4j</groupId>
                                        <artifactId>slf4j-log4j12</artifactId>
                                </exclusion>
                        </exclusions>
                </dependency>

Bye.
/lexi

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Home: http://acegisecurity.org
Acegisecurity-developer mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer

Reply via email to