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.
113 lines
4.1 KiB
113 lines
4.1 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>@pomVersion@</version> |
|
</parent> |
|
<packaging>jar</packaging> |
|
<artifactId>spring-security-config</artifactId> |
|
<name>Spring Security - Namespace Configuration Module</name> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-core</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-web</artifactId> |
|
<version>${project.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-core</artifactId> |
|
<version>${project.version}</version> |
|
<classifier>tests</classifier> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-web</artifactId> |
|
<version>${project.version}</version> |
|
<classifier>tests</classifier> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-openid</artifactId> |
|
<version>${project.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-ldap</artifactId> |
|
<version>${project.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-jdbc</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.directory.server</groupId> |
|
<artifactId>apacheds-core</artifactId> |
|
<version>1.5.5</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.directory.server</groupId> |
|
<artifactId>apacheds-server-jndi</artifactId> |
|
<version>1.5.5</version> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-log4j12</artifactId> |
|
<version>1.6.0</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>hsqldb</groupId> |
|
<artifactId>hsqldb</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>cglib</groupId> |
|
<artifactId>cglib-nodep</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.annotation</groupId> |
|
<artifactId>jsr250-api</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>servlet-api</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>com.springsource.bundlor</groupId> |
|
<artifactId>com.springsource.bundlor.maven</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|