<?xml version="1.0"?>
<project
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>com.plmc</groupId>
		<artifactId>parent-pom</artifactId>
		<version>1.0.1-SNAPSHOT</version>
	</parent>
	<artifactId>plmc-idmc</artifactId>
	<name>plmc-idmc</name>
	<version>1.0.1-SNAPSHOT</version>
	<url>http://maven.apache.org</url>
	<packaging>jar</packaging>
	
	<properties>
		<cas.client.version>4.0.4</cas.client.version>
		<plmc.cache.version>1.0.1-SNAPSHOT</plmc.cache.version>
		<plmc.core.version>1.0.1-SNAPSHOT</plmc.core.version>
		<commons-fileupload.version>1.6.0</commons-fileupload.version>
		<esapi.version>2.5.3.1</esapi.version>
		<jedis.version>5.1.0</jedis.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>com.plmc</groupId>
			<artifactId>plmc-core</artifactId>
			<version>${plmc.core.version}</version>
		</dependency>
		
		<dependency>
		  	<groupId>org.apache.tomcat.embed</groupId>
		  	<artifactId>tomcat-embed-core</artifactId>
		</dependency>
		
		<dependency>
		    <groupId>org.springframework</groupId>
		    <artifactId>spring-web</artifactId>
		</dependency>
		
		<dependency>
		  <groupId>org.apereo.cas.client</groupId>
		  <artifactId>cas-client-core</artifactId>
		  <version>${cas.client.version}</version>
		</dependency>
		
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
		</dependency>
		
		<dependency>
			<groupId>com.plmc</groupId>
			<artifactId>plmc-cache</artifactId>
			<version>${plmc.cache.version}</version>
		</dependency>
		
		<dependency>
		  	<groupId>commons-fileupload</groupId>
		  	<artifactId>commons-fileupload</artifactId>
		  	<version>${commons-fileupload.version}</version>
		</dependency>
		
		<dependency>
			<groupId>org.owasp.esapi</groupId>
			<artifactId>esapi</artifactId>
			<version>${esapi.version}</version>
			<exclusions>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>slf4j-simple</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		
		<dependency>
			<groupId>redis.clients</groupId>
			<artifactId>jedis</artifactId>
			<version>${jedis.version}</version>
		</dependency>
	</dependencies>
	
	<description>
		cas客户端jar
	</description>
</project>