<?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.vortex.xiaoshan</groupId>
        <artifactId>basic-info</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>
    <groupId>com.vortex.xiaoshan</groupId>
    <artifactId>basicinfo-application</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>basicinfo-application</name>
    <description>application</description>

    <properties>
        <java.version>1.8</java.version>
        <gson.version>2.8.6</gson.version>
    </properties>

    <dependencies>

        <!-- 项目内部包 -->
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>common</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.data</groupId>
                    <artifactId>spring-data-mongodb</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>waterenv-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>hikvideo-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>basicinfo-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>usercenter-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>pmms-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>event-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>river-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>auth-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>message-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>spsms-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <!-- vortex 公共-->
        <dependency>
            <groupId>com.vortex.tool</groupId>
            <artifactId>autotest-tool</artifactId>
        </dependency>
        <dependency>
            <groupId>com.vortex.tool</groupId>
            <artifactId>sw2-apidoc</artifactId>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
        </dependency>


        <!-- 数据库 -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>


        <!-- spring boot -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
        </dependency>

        <!-- spring cloud -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.openfeign</groupId>
            <artifactId>feign-httpclient</artifactId>
        </dependency>

        <!-- redis 缓存-->
        <dependency>
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>

        <!-- quartz -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-quartz</artifactId>
        </dependency>

        <!-- 分布式文件服务 -->
        <dependency>
            <groupId>com.vortex.xiaoshan</groupId>
            <artifactId>dfs-ui</artifactId>
            <version>${dfs-ui.version}</version>
        </dependency>


        <dependency>
            <groupId>ch.qos.cal10n</groupId>
            <artifactId>cal10n-api</artifactId>
            <version>0.8.1</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>${gson.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-engine-core</artifactId>
        </dependency>

        <!-- supermap   start-->
        <dependency>
            <groupId>com.supermap</groupId>
            <artifactId>iserver-all-10.0.1-18030</artifactId>
            <version>10.0.1-SNAPSHOT</version>
            <scope>system</scope>
            <systemPath>${pom.basedir}/lib/iserver-all-10.0.1-18030.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>com.supermap.services.rest</groupId>
            <artifactId>rest-sdk-10.0.1-18030</artifactId>
            <version>10.0.1-SNAPSHOT</version>
            <scope>system</scope>
            <systemPath>${pom.basedir}/lib/rest-sdk-10.0.1-18030.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>com.supermap</groupId>
            <artifactId>server-host-model-10.0.1-18030</artifactId>
            <version>10.0.1-SNAPSHOT</version>
            <scope>system</scope>
            <systemPath>${pom.basedir}/lib/server-host-model-10.0.1-18030.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>com.supermap</groupId>
            <artifactId>service-model-10.0.1</artifactId>
            <version>10.0.1-SNAPSHOT</version>
            <scope>system</scope>
            <systemPath>${pom.basedir}/lib/service-model-10.0.1.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>com.supermap.data</groupId>
            <artifactId>slf4j-ext</artifactId>
            <version>10.0.1.18027</version>
            <scope>system</scope>
            <systemPath>${pom.basedir}/lib/slf4j-ext-1.7.26.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>com.supermap.data</groupId>
            <artifactId>restlet</artifactId>
            <version>10.0.1.18027</version>
            <scope>system</scope>
            <systemPath>${pom.basedir}/lib/org.restlet-2.2.3.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>com.supermap.data</groupId>
            <artifactId>ehcache</artifactId>
            <version>10.0.1.18027</version>
            <scope>system</scope>
            <systemPath>${pom.basedir}/lib/ehcache-2.10.5.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>com.supermap.data</groupId>
            <artifactId>restlet-ext</artifactId>
            <version>10.0.1.18027</version>
            <scope>system</scope>
            <systemPath>${pom.basedir}/lib/org.restlet.ext.json-2.2.3.jar</systemPath>
        </dependency>
        <!-- supermap   end-->
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.5.3</version>
                <!-- The configuration of the plugin -->
                <configuration>
                    <!-- Specifies the configuration file of the assembly plugin -->
                    <descriptors>
                        <descriptor>src/main/assembly/package.xml</descriptor>
                    </descriptors>
                    <appendAssemblyId>false</appendAssemblyId>
                    <!--<finalName>${project.artifactId}</finalName>-->
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
