<?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>
        <groupId>com.hotent</groupId>
        <artifactId>wms-out</artifactId>
        <version>8.2.5-hhwl-group</version>
    </parent>

    <artifactId>wms-out-biz</artifactId>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.hotent</groupId>
            <artifactId>wms-out-entity</artifactId>
        </dependency>
        <dependency>
            <groupId>com.hotent</groupId>
            <artifactId>wms-in-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.hotent</groupId>
            <artifactId>wms-wcs-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.hotent</groupId>
            <artifactId>wms-store-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.hotent</groupId>
            <artifactId>wms-store-entity</artifactId>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>easyexcel</artifactId>
            <version>3.3.0</version>
        </dependency>
        <dependency>
            <groupId>com.opencsv</groupId>
            <artifactId>opencsv</artifactId>
        </dependency>
        <dependency>
            <groupId>com.hotent</groupId>
            <artifactId>file</artifactId>
            <version>${eip.version}</version>
        </dependency>
        <dependency>
            <groupId>com.hotent</groupId>
            <artifactId>base</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>pdfbox</artifactId>
        </dependency>
        <!-- 处理图片 -->
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-imaging</artifactId>
        </dependency>
        <dependency>
            <groupId>cn.keking</groupId>
            <artifactId>fileView-server</artifactId>
        </dependency>
    </dependencies>

    <!-- 当前模块的pom.xml -->
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <excludes>
                    <!-- 排除二进制文件，避免过滤破坏结构 -->
                    <exclude>**/*.xlsx</exclude>
                    <exclude>**/*.xls</exclude>
                    <!-- 其他二进制文件类型 -->
                </excludes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
                <includes>
                    <!-- 对二进制文件不进行过滤 -->
                    <include>**/*.xlsx</include>
                    <include>**/*.xls</include>
                    <!-- 其他二进制文件类型 -->
                </includes>
            </resource>
        </resources>
    </build>

</project>