2008-01-02 17:41:31 -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">
|
2007-05-17 23:23:16 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2007-09-21 14:24:16 -04:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-samples</artifactId>
|
2008-01-02 17:42:21 -05:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2007-05-17 23:23:16 -04:00
|
|
|
</parent>
|
2007-12-02 23:05:33 -05:00
|
|
|
<artifactId>spring-security-samples-dms</artifactId>
|
|
|
|
<name>Spring Security - DMS sample</name>
|
2007-05-17 23:23:16 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2007-09-21 14:24:16 -04:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
2007-05-17 23:23:16 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2007-12-02 23:05:33 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2007-05-17 23:23:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-mock</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2007-12-02 23:05:33 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>1.8.0.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<version>1.2.4</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2007-05-17 23:23:16 -04:00
|
|
|
</dependencies>
|
2008-01-02 17:41:31 -05:00
|
|
|
</project>
|