2009-03-25 02:28:18 -04:00
|
|
|
<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>
|
2009-08-21 08:02:49 -04:00
|
|
|
<version>3.0.0.CI-SNAPSHOT</version>
|
2009-03-25 02:28:18 -04:00
|
|
|
</parent>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
|
|
|
<name>Spring Security - Web Application Security Module</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2009-05-13 02:16:05 -04:00
|
|
|
<artifactId>spring-web</artifactId>
|
2009-03-25 02:28:18 -04:00
|
|
|
<!-- optional>true</optional -->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2009-05-13 02:16:05 -04:00
|
|
|
<artifactId>spring-jdbc</artifactId>
|
2009-03-25 02:28:18 -04:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2009-05-13 02:16:05 -04:00
|
|
|
<artifactId>spring-test</artifactId>
|
2009-03-25 02:28:18 -04:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2009-04-24 05:12:53 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.springsource.bundlor</groupId>
|
|
|
|
<artifactId>com.springsource.bundlor.maven</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2009-03-25 02:28:18 -04:00
|
|
|
</project>
|