2008-02-19 15:30:53 -05:00
|
|
|
<?xml version="1.0"?>
|
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-19 15:30:53 -05:00
|
|
|
<parent>
|
|
|
|
<artifactId>spring-security-parent</artifactId>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
2009-04-22 08:55:52 -04:00
|
|
|
<version>3.0.0.CI-SNAPSHOT</version>
|
2008-02-19 15:30:53 -05:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-taglibs</artifactId>
|
2008-03-24 05:05:44 -04:00
|
|
|
<name>Spring Security - JSP taglibs</name>
|
2009-04-22 08:55:52 -04:00
|
|
|
<version>3.0.0.CI-SNAPSHOT</version>
|
2008-02-19 15:30:53 -05:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
2009-04-25 04:04:26 -04:00
|
|
|
<artifactId>spring-security-web</artifactId>
|
2008-02-19 15:30:53 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-acl</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2008-12-17 21:37:00 -05:00
|
|
|
</dependency>
|
2008-02-19 15:30:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2008-12-17 21:37:00 -05:00
|
|
|
<artifactId>org.springframework.web</artifactId>
|
2008-02-19 15:30:53 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2008-12-17 21:37:00 -05:00
|
|
|
<artifactId>org.springframework.test</artifactId>
|
2008-02-19 15:30:53 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>taglibs</groupId>
|
|
|
|
<artifactId>standard</artifactId>
|
2008-03-22 20:31:32 -04:00
|
|
|
<scope>test</scope>
|
2008-12-17 21:37:00 -05:00
|
|
|
</dependency>
|
2008-02-19 15:30:53 -05:00
|
|
|
</dependencies>
|
2008-03-22 20:31:32 -04:00
|
|
|
</project>
|