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

    <artifactId>product-service-impl</artifactId>

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

27
        <!-- DB 相关 -->
28 29 30 31
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
32 33 34 35 36

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
        </dependency>
37
        <dependency>
38 39
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
40 41 42
        </dependency>

        <dependency>
43 44
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
45
        </dependency>
46

47 48 49 50 51
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>

linhj's avatar
linhj committed
52 53 54 55 56 57
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>mall-spring-boot-starter-mybatis</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>

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

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

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

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

        <!-- 工具类相关 -->
83 84 85 86
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
linhj's avatar
linhj committed
87 88 89 90 91 92
        <dependency>
            <groupId>cn.iocoder.mall</groupId>
            <artifactId>user-biz</artifactId>
            <version>1.0-SNAPSHOT</version>
            <scope>compile</scope>
        </dependency>
93 94 95 96 97 98 99 100 101 102 103 104 105

    </dependencies>

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

106
</project>