pom.xml 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?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>order</artifactId>
        <groupId>cn.iocoder.mall</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>order-service-impl</artifactId>

    <dependencies>
15
        <!-- Mall 相关 -->
16 17
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
sin's avatar
sin committed
18
            <artifactId>user-sdk</artifactId>
19
            <version>1.0-SNAPSHOT</version>
sin's avatar
sin committed
20
            <scope>compile</scope>
21
        </dependency>
22 23
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
sin's avatar
sin committed
24
            <artifactId>product-service-api</artifactId>
25 26 27
            <version>1.0-SNAPSHOT</version>
            <scope>compile</scope>
        </dependency>
sin's avatar
sin committed
28 29 30 31 32
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>pay-service-api</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
sin's avatar
sin committed
33 34 35 36 37 38 39 40 41 42
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>order-service-api</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>system-service-api</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
sin's avatar
sin committed
43 44 45 46 47
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>user-service-api</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
48 49 50 51 52
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>promotion-service-api</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
sin's avatar
sin committed
53

54
        <!-- DB 相关 -->
sin's avatar
sin committed
55
        <dependency>
56 57
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
sin's avatar
sin committed
58
        </dependency>
59

sin's avatar
sin committed
60
        <dependency>
61 62 63 64 65 66
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
sin's avatar
sin committed
67
        </dependency>
68

69
        <dependency>
70 71
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
72
        </dependency>
73

74 75 76 77
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>
sin's avatar
sin committed
78 79

        <dependency>
80 81
            <groupId>io.seata</groupId>
            <artifactId>seata-spring</artifactId>
sin's avatar
sin committed
82
        </dependency>
83
        <dependency>
84 85
            <groupId>io.seata</groupId>
            <artifactId>seata-dubbo</artifactId>
86
        </dependency>
87 88

        <!-- RPC 相关 -->
89
        <dependency>
90 91
            <groupId>org.apache.dubbo</groupId>
            <artifactId>dubbo</artifactId>
92 93 94 95 96
        </dependency>
        <dependency>
            <groupId>org.apache.dubbo</groupId>
            <artifactId>dubbo-spring-boot-starter</artifactId>
        </dependency>
97

98
        <!-- MQ 相关 -->
sin's avatar
sin committed
99
        <dependency>
100 101
            <groupId>org.apache.rocketmq</groupId>
            <artifactId>rocketmq-spring-boot-starter</artifactId>
sin's avatar
sin committed
102
        </dependency>
103

104
        <!-- Job 相关 -->
105
        <dependency>
106 107
            <groupId>com.xuxueli</groupId>
            <artifactId>xxl-job-core</artifactId>
108 109
        </dependency>

110
        <!-- Registry 和 Config 相关 -->
111
        <dependency>
112 113
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-framework</artifactId>
114 115
        </dependency>
        <dependency>
116 117 118 119 120 121 122 123
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-recipes</artifactId>
        </dependency>

        <!-- 工具类相关 -->
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
124 125
        </dependency>

126
        <!--  测试相关  -->
127 128 129 130 131
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
132
    </dependencies>
133 134 135 136 137 138 139 140 141 142

    <build>
        <plugins>
            <!-- 提供给 mapstruct 使用 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
143
</project>