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
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-samples</artifactId>
|
2009-08-21 08:02:49 -04:00
|
|
|
<version>3.0.0.CI-SNAPSHOT</version>
|
2008-02-19 15:30:53 -05:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-security-samples-dms</artifactId>
|
|
|
|
<name>Spring Security - DMS sample</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-acl</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2009-05-13 02:16:05 -04:00
|
|
|
<artifactId>spring-jdbc</artifactId>
|
2008-02-19 15:30:53 -05:00
|
|
|
</dependency>
|
2008-03-22 20:31:32 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</dependency>
|
2008-02-19 15:30:53 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2009-05-13 02:16:05 -04:00
|
|
|
<artifactId>spring-aop</artifactId>
|
2008-02-19 15:30:53 -05:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2009-05-13 02:16:05 -04:00
|
|
|
<artifactId>spring-test</artifactId>
|
2008-02-19 15:30:53 -05:00
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2008-01-02 17:41:31 -05:00
|
|
|
</project>
|