<?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>
        <groupId>com.vortex.envcloud</groupId>
        <artifactId>envcloud-framework-lite</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>

    <artifactId>envcloud-xinfeng</artifactId>
    <packaging>pom</packaging>
    <version>1.0-SNAPSHOT</version>


    <properties>
        <hw-cloud-sdk-ums-remote>1.3.0-SNAPSHOT</hw-cloud-sdk-ums-remote>
        <hw-cloud-sdk-lbs-remote>1.3.0-SNAPSHOT</hw-cloud-sdk-lbs-remote>
        <hw-cloud-sdk-file-remote>1.3.0-SNAPSHOT</hw-cloud-sdk-file-remote>
        <hw-cloud-lbs-lib>1.2.0-SNAPSHOT</hw-cloud-lbs-lib>
        <myexcel>3.11.7</myexcel>
        <easyexcel>3.0.5</easyexcel>
        <dynamic>3.5.1</dynamic>
        <velocity-engine-core>2.3</velocity-engine-core>
        <jxl>2.6.12</jxl>
        <artemis-http-client>1.1.3</artemis-http-client>
        <mqttv3>1.2.5</mqttv3>
        <proj4j>0.1.0</proj4j>
        <joda>2.10.14</joda>
        <servlet>4.0.1</servlet>
        <minio>7.1.0</minio>
        <swagger-annotations>1.5.21</swagger-annotations>
        <springfox-boot-starter>3.0.0</springfox-boot-starter>
        <zxing>3.4.1</zxing>
        <vtxhttpclient>1.1.6</vtxhttpclient>
        <guava-retrying>2.0.0</guava-retrying>
        <postgis-jdbc>2.5.1</postgis-jdbc>
        <commons-compress>1.21</commons-compress>
        <mybatis-plus>3.5.1</mybatis-plus>
        <aliyun>4.5.16</aliyun>
        <cglib>2.2</cglib>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.vortex.cloud</groupId>
                <artifactId>hw-cloud-sdk-ums-remote</artifactId>
                <version>${hw-cloud-sdk-ums-remote}</version>
            </dependency>
            <dependency>
                <groupId>com.vortex.cloud</groupId>
                <artifactId>hw-cloud-sdk-lbs-remote</artifactId>
                <version>${hw-cloud-sdk-lbs-remote}</version>
            </dependency>
            <dependency>
                <groupId>com.vortex.cloud</groupId>
                <artifactId>hw-cloud-sdk-file-remote</artifactId>
                <version>${hw-cloud-sdk-file-remote}</version>
            </dependency>
            <dependency>
                <groupId>com.vortex.cloud</groupId>
                <artifactId>hw-cloud-lbs-lib</artifactId>
                <version>${hw-cloud-lbs-lib}</version>
            </dependency>
            <dependency>
                <groupId>com.github.liaochong</groupId>
                <artifactId>myexcel</artifactId>
                <version>${myexcel}</version>
            </dependency>
            <!-- 阿里开源EXCEL -->
            <dependency>
                <groupId>com.alibaba</groupId>
                <artifactId>easyexcel</artifactId>
                <version>${easyexcel}</version>
            </dependency>
            <dependency>
                <groupId>cglib</groupId>
                <artifactId>cglib</artifactId>
                <version>${cglib}</version>
            </dependency>
            <!--多数据源配置-->
            <dependency>
                <groupId>com.baomidou</groupId>
                <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
                <version>${dynamic}</version>
            </dependency>
            <!--模板引擎-->
            <dependency>
                <groupId>org.apache.velocity</groupId>
                <artifactId>velocity-engine-core</artifactId>
                <version>${velocity-engine-core}</version>
            </dependency>
            <!--JExcelApi是一个java库，提供了读取、写入和修改Microsoft Excel电子表格的能力-->
            <dependency>
                <groupId>net.sourceforge.jexcelapi</groupId>
                <artifactId>jxl</artifactId>
                <version>${jxl}</version>
            </dependency>
            <dependency>
                <groupId>com.hikvision.ga</groupId>
                <artifactId>artemis-http-client</artifactId>
                <version>${artemis-http-client}</version>
            </dependency>
            <dependency>
                <groupId>org.eclipse.paho</groupId>
                <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
                <version>${mqttv3}</version>
            </dependency>
            <!--用于将点坐标从一个地理坐标系统转换到另一个地理坐标系统，包括基准转换-->
            <dependency>
                <groupId>org.osgeo</groupId>
                <artifactId>proj4j</artifactId>
                <version>${proj4j}</version>
            </dependency>
            <!--日期和时间库，以取代JDK的日期处理  -->
            <dependency>
                <groupId>joda-time</groupId>
                <artifactId>joda-time</artifactId>
                <version>${joda}</version>
            </dependency>
            <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>javax.servlet-api</artifactId>
                <version>${servlet}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.commons</groupId>
                <artifactId>commons-compress</artifactId>
                <version>${commons-compress}</version>
                <scope>compile</scope>
            </dependency>
            <!--云存储-->
            <dependency>
                <groupId>io.minio</groupId>
                <artifactId>minio</artifactId>
                <version>${minio}</version>
            </dependency>
            <dependency>
                <groupId>com.google.zxing</groupId>
                <artifactId>core</artifactId>
                <version>${zxing}</version>
            </dependency>
            <!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
            <dependency>
                <groupId>com.google.zxing</groupId>
                <artifactId>javase</artifactId>
                <version>${zxing}</version>
            </dependency>
            <dependency>
                <groupId>com.vortex.tool</groupId>
                <artifactId>vtxhttpclient</artifactId>
                <version>${vtxhttpclient}</version>
            </dependency>
            <dependency>
                <groupId>com.github.rholder</groupId>
                <artifactId>guava-retrying</artifactId>
                <version>${guava-retrying}</version>
            </dependency>
            <dependency>
                <groupId>net.postgis</groupId>
                <artifactId>postgis-jdbc</artifactId>
                <version>${postgis-jdbc}</version>
            </dependency>
            <dependency>
                <groupId>com.baomidou</groupId>
                <artifactId>mybatis-plus-generator</artifactId>
                <version>${mybatis-plus}</version>
            </dependency>
            <dependency>
                <groupId>com.aliyun</groupId>
                <artifactId>aliyun-java-sdk-core</artifactId>
                <version>${aliyun}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <repositories>
        <!-- vortex maven -->
        <repository>
            <id>vortex</id>
            <url>http://maven.envcloud.com.cn:8081/nexus/content/groups/public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
        <!--阿里云仓库-->
        <repository>
            <id>aliyun</id>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        </repository>
    </repositories>
</project>