<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.sunda</groupId>
        <artifactId>spms</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>../pom.xml</relativePath> <!-- lookup parent from repository -->
    </parent>
    <packaging>jar</packaging>
    <groupId>com.sunda</groupId>
    <artifactId>spms-order</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>spms-order</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
        <skipTests>true</skipTests>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.sunda</groupId>
            <artifactId>spms-common</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <!-- 第三方excel导入导出工具 -->
        <!-- https://gitee.com/lemur/easypoi -->
        <dependency>
		    <groupId>cn.afterturn</groupId>
		    <artifactId>easypoi-base</artifactId>
		    <version>4.1.0</version>
		</dependency>
        <dependency>
		    <groupId>cn.afterturn</groupId>
		    <artifactId>easypoi-web</artifactId>
		    <version>4.1.0</version>
		</dependency>
        <dependency>
		    <groupId>cn.afterturn</groupId>
		    <artifactId>easypoi-annotation</artifactId>
		    <version>4.1.0</version>
		</dependency>
		
        <dependency>
            <groupId>io.minio</groupId>
            <artifactId>minio</artifactId>
            <version>3.0.10</version>
        </dependency>
        <dependency>
            <groupId>com.sunda</groupId>
            <artifactId>spms-user</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.sunda</groupId>
            <artifactId>spms-wms</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
            <version>4.3.11.RELEASE</version>
            <scope>compile</scope>
        </dependency>
        <!--邮箱 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
        </dependency>
        <!-- redis -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
    </dependencies>


</project>
