<?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>psdc</artifactId>
        <groupId>com.psdc</groupId>
        <version>0.0.1</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>psdc-business</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.psdc</groupId>
            <artifactId>psdc-common</artifactId>
        </dependency>

        <dependency>
            <groupId>com.psdc</groupId>
            <artifactId>psdc-framework</artifactId>
            <version>0.0.1</version>
        </dependency>

        <dependency>
            <groupId>com.psdc</groupId>
            <artifactId>psdc-quartz</artifactId>
            <version>0.0.1</version>
        </dependency>



        <dependency>
            <groupId>com.dky</groupId>
            <artifactId>dntd-tool</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
        

        <dependency>
            <groupId>org.bouncycastle</groupId>
            <artifactId>bcprov-jdk15on</artifactId>
            <version>1.68</version>
        </dependency>

        <dependency>
            <groupId>com.phcomponent.basictech</groupId>
            <artifactId>phc-techcomponnet-framework</artifactId>
            <version>2.2.3</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.26</version>
        </dependency>

        <dependency>
            <groupId>com.sgitg.sgcc</groupId>
            <artifactId>sgsm</artifactId>
            <version>1.0.0</version>
        </dependency>

        <!-- 定时任务 -->
<!--        <dependency>-->
<!--            <groupId>org.quartz-scheduler</groupId>-->
<!--            <artifactId>quartz</artifactId>-->
<!--            <exclusions>-->
<!--                <exclusion>-->
<!--                    <groupId>com.mchange</groupId>-->
<!--                    <artifactId>c3p0</artifactId>-->
<!--                </exclusion>-->
<!--            </exclusions>-->
<!--        </dependency>-->
    </dependencies>

   <build>
       <plugins>
           <plugin>
               <groupId>org.springframework.boot</groupId>
               <artifactId>spring-boot-maven-plugin</artifactId>
               <configuration>
                   <includeSystemScope>true</includeSystemScope>
               </configuration>
           </plugin>
       </plugins>
   </build>
</project>