33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>cas-client</artifactId>
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<version>3.4.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<packaging>jar</packaging>
|
|
<artifactId>cas-client-support-distributed-memcached</artifactId>
|
|
<name>Jasig CAS Client for Java - Distributed Proxy Storage Support:
|
|
Memcached
|
|
</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<artifactId>cas-client-core</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.spy</groupId>
|
|
<artifactId>spymemcached</artifactId>
|
|
<version>2.9.1</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|