pom.xml 3.5 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>promotion</artifactId>
        <groupId>cn.iocoder.mall</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>promotion-service-impl</artifactId>

    <dependencies>
15
        <!-- Mall 相关 -->
16 17 18 19 20 21 22
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>promotion-service-api</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
23
            <artifactId>system-service-api</artifactId>
24 25 26
            <version>1.0-SNAPSHOT</version>
        </dependency>
        <dependency>
27 28 29
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>product-service-api</artifactId>
            <version>1.0-SNAPSHOT</version>
30
        </dependency>
31

32
        <!-- DB 相关 -->
33
        <dependency>
34 35
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
36
        </dependency>
37

38
        <dependency>
39 40
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
41 42
        </dependency>
        <dependency>
43 44
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
45
        </dependency>
46

47 48 49 50
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
        </dependency>
51

52 53 54 55
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>
56

57
        <!-- RPC 相关 -->
58
        <dependency>
59 60
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-dubbo</artifactId>
61
        </dependency>
62

63
        <!-- Registry 和 Config 相关 -->
64
        <dependency>
65 66
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
67 68
        </dependency>

69 70 71 72 73 74
        <!-- Transaction 相关 -->
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-alibaba-seata</artifactId>
        </dependency>

75
        <!-- MQ 相关 -->
76
        <dependency>
77 78
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-stream-rocketmq</artifactId>
79
        </dependency>
80

81
        <!-- Job 相关 -->
82
        <dependency>
83 84
            <groupId>com.xuxueli</groupId>
            <artifactId>xxl-job-core</artifactId>
85
        </dependency>
86 87

        <!-- 工具类相关 -->
88
        <dependency>
89 90
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
91
        </dependency>
92

93
        <!-- 测试相关  -->
94 95 96 97 98
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
99

100 101 102 103 104 105 106 107 108 109 110 111
    </dependencies>

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

112
</project>