2008-02-29 14:54:15 +00: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 20:30:53 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-parent</artifactId>
|
2012-10-08 21:18:15 -05:00
|
|
|
<version>2.0.8.RELEASE</version>
|
2008-02-19 20:30:53 +00:00
|
|
|
</parent>
|
2008-03-28 18:25:02 +00:00
|
|
|
<artifactId>spring-security-cas-client</artifactId>
|
2008-03-24 09:05:44 +00:00
|
|
|
<name>Spring Security - CAS support</name>
|
2009-07-09 11:51:26 +00:00
|
|
|
<packaging>jar</packaging>
|
2008-02-19 20:30:53 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2008-08-04 20:42:48 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-02-19 20:30:53 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-dao</artifactId>
|
2008-04-01 15:01:30 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-mock</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jasig.cas</groupId>
|
|
|
|
<artifactId>cas-client-core</artifactId>
|
2008-12-22 19:37:50 +00:00
|
|
|
<version>3.1.5</version>
|
2008-04-01 15:01:30 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
<optional>true</optional>
|
2008-02-19 20:30:53 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2008-04-30 18:02:47 +00:00
|
|
|
|
2009-07-09 11:51:26 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.springsource.bundlor</groupId>
|
|
|
|
<artifactId>com.springsource.bundlor.maven</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2008-04-01 15:01:30 +00:00
|
|
|
</project>
|