pom.xml 3.29 KB
Newer Older
1 2 3 4 5 6 7
<?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.hikcreate.edl.pub.web.mobile</groupId>
        <artifactId>root</artifactId>
xieshixiang committed
8
        <version>1.9-SNAPSHOT</version>
9 10 11 12 13 14 15 16 17 18 19 20
        <relativePath>../pom.xml</relativePath>
    </parent>

    <groupId>com.hikcreate.edl.pub.web.mobile</groupId>
    <artifactId>infra</artifactId>
    <name>infra</name>
    <description>数据支撑模块</description>

    <dependencies>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
xieshixiang committed
21
            <version>${mybatis.version}</version>
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>${mysql.version}</version>
        </dependency>

        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>${druid.version}</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>

        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>${hutoll.version}</version>
        </dependency>

lixian7 committed
47 48 49 50
        <!--Apollo Start-->
        <dependency>
            <groupId>com.ctrip.framework.apollo</groupId>
            <artifactId>apollo-client</artifactId>
lixian7 committed
51
            <version>${apollo.version}</version>
lixian7 committed
52 53 54 55 56 57 58
        </dependency>
        <!--Apollo End-->

        <!--多数据源支持 Start-->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
lixian7 committed
59
            <version>${dynamic-datasource.version}</version>
lixian7 committed
60 61 62 63 64 65
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-web</artifactId>
                </exclusion>
            </exclusions>
lixian7 committed
66 67 68 69 70 71
        </dependency>
        <!--多数据源支持 End-->

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
lixian7 committed
72 73 74 75 76 77
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter</artifactId>
                </exclusion>
            </exclusions>
lixian7 committed
78
        </dependency>
79

lixian7 committed
80
        <!--<dependency>
lixian7 committed
81 82
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
lixian7 committed
83
        </dependency>-->
lixian7 committed
84 85 86 87 88

        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
        </dependency>
lixian7 committed
89 90 91 92 93 94

        <dependency>
            <groupId>com.hikcreate.edl.common</groupId>
            <artifactId>sdk</artifactId>
            <version>${parent.version}</version>
        </dependency>
95 96 97
    </dependencies>

</project>