<?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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>ps</artifactId>
        <groupId>com.ibiz</groupId>
        <version>1.0.0.0</version>
    </parent>

    <artifactId>ps-app</artifactId>
    <name>Ps Application</name>
    <description>Ps Application</description>
    <packaging>pom</packaging>

    <modules>
        <module>ps-app-web</module>
    </modules>

    <dependencies>
        <dependency>
		    <groupId>org.springframework.data</groupId>
			<artifactId>spring-data-commons</artifactId>
		</dependency>
        
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-security</artifactId>
            <version>2.1.1.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt</artifactId>
            <version>0.9.1</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-cas</artifactId>
        </dependency>
        
        <dependency>
			<groupId>com.ibiz</groupId>
			<artifactId>ps-util</artifactId>
			<version>${project.version}</version>
		</dependency>
    </dependencies>

</project>