2008-02-29 09:54:15 -05: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">
|
2008-02-22 11:21:37 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-parent</artifactId>
|
2008-02-29 09:55:31 -05:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2008-02-22 11:21:37 -05:00
|
|
|
</parent>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-samples</artifactId>
|
|
|
|
<name>Spring Security - Samples</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<!--
|
|
|
|
<module>annotations</module>
|
|
|
|
<module>attributes</module>
|
|
|
|
<module>dms</module>
|
|
|
|
-->
|
|
|
|
<module>contacts</module>
|
|
|
|
<module>tutorial</module>
|
|
|
|
<module>dms</module>
|
|
|
|
<module>preauth</module>
|
2008-02-25 11:51:06 -05:00
|
|
|
<module>openid</module>
|
2008-02-22 11:21:37 -05:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
2008-03-20 15:43:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2008-02-22 11:21:37 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>jstl</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>taglibs</groupId>
|
|
|
|
<artifactId>standard</artifactId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2005-12-22 11:17:37 -05:00
|
|
|
</project>
|