You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
4.7 KiB
126 lines
4.7 KiB
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-parent</artifactId> |
|
<version>2.5.0-SNAPSHOT</version> |
|
</parent> |
|
<artifactId>spring-security-itest</artifactId> |
|
<name>Spring Security - Integration Tests</name> |
|
<packaging>pom</packaging> |
|
<version>2.5.0-SNAPSHOT</version> |
|
<modules> |
|
<module>web</module> |
|
<!-- module>webflow</module--> |
|
<module>context</module> |
|
</modules> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring</artifactId> |
|
<version>2.5.6</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-test</artifactId> |
|
<version>2.5.6</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-core</artifactId> |
|
<version>${project.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>org.springframework.core</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>org.springframework.context</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>org.springframework.aop</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-config</artifactId> |
|
<version>${project.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-security-core</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.directory.server</groupId> |
|
<artifactId>apacheds-core</artifactId> |
|
<version>1.0.2</version> |
|
<scope>runtime</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.directory.server</groupId> |
|
<artifactId>apacheds-server-jndi</artifactId> |
|
<version>1.0.2</version> |
|
<scope>runtime</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.ldap</groupId> |
|
<artifactId>spring-ldap-core</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
<version>1.4.3</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-log4j12</artifactId> |
|
<version>1.4.3</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>jcl104-over-slf4j</artifactId> |
|
<version>1.4.3</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|