123456789101112131415161718192021222324252627282930313233343536373839 |
- <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>3.0.0.CI-SNAPSHOT</version>
- </parent>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-samples</artifactId>
- <name>Spring Security - Samples</name>
- <packaging>pom</packaging>
- <modules>
- <module>contacts</module>
- <module>tutorial</module>
- <module>dms</module>
- <module>preauth</module>
- <module>openid</module>
- <module>ldap</module>
- <module>portlet</module>
- <module>cas</module>
- <module>aspectj</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>taglibs</groupId>
- <artifactId>standard</artifactId>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </project>
|