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-10-11 17:59:38 -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-acl</artifactId>
|
2008-03-24 05:05:44 -04:00
|
|
|
<name>Spring Security - ACL module</name>
|
2008-11-10 20:09:37 -05:00
|
|
|
<packaging>jar</packaging>
|
2008-02-19 15:30:53 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2008-08-04 16:14:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
2008-02-19 15:30:53 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-10-15 01:52:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
2009-05-13 02:16:05 -04:00
|
|
|
<artifactId>spring-context-support</artifactId>
|
2008-11-04 01:43:08 -05:00
|
|
|
</dependency>
|
2008-02-19 15:30:53 -05:00
|
|
|
<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>
|
|
|
|
<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
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-05-06 10:29:53 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>8.3-603.jdbc3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2008-02-19 15:30:53 -05:00
|
|
|
</dependencies>
|
2008-11-04 01:43:08 -05:00
|
|
|
|
2009-04-24 05:12:53 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.springsource.bundlor</groupId>
|
|
|
|
<artifactId>com.springsource.bundlor.maven</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2008-11-04 01:43:08 -05:00
|
|
|
</project>
|