2019-09-19 20:16:26 +08:00
|
|
|
|
<?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>
|
2020-07-17 19:59:43 +08:00
|
|
|
|
<artifactId>common</artifactId>
|
2019-09-19 20:16:26 +08:00
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2020-07-17 19:59:43 +08:00
|
|
|
|
<artifactId>mall-spring-boot-starter-dubbo</artifactId>
|
2019-09-19 20:16:26 +08:00
|
|
|
|
|
|
|
|
|
<dependencies>
|
2020-07-17 19:59:43 +08:00
|
|
|
|
<!-- 通用相关 -->
|
2019-09-19 20:16:26 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
|
<artifactId>common-framework</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-07-21 08:07:11 +08:00
|
|
|
|
<!-- Web 相关 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-07-17 19:59:43 +08:00
|
|
|
|
<!-- RPC 相关 -->
|
2020-07-21 19:45:58 +08:00
|
|
|
|
<!-- TODO 优化点:Spring Cloud Alibaba Dubbo 的示例 -->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.alibaba.cloud</groupId>-->
|
|
|
|
|
<!-- <artifactId>spring-cloud-starter-dubbo</artifactId>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
2019-09-19 20:16:26 +08:00
|
|
|
|
<dependency>
|
2020-07-21 19:45:58 +08:00
|
|
|
|
<groupId>org.apache.dubbo</groupId>
|
|
|
|
|
<artifactId>dubbo-spring-boot-starter</artifactId>
|
2019-09-19 20:16:26 +08:00
|
|
|
|
</dependency>
|
2020-07-17 19:59:43 +08:00
|
|
|
|
|
|
|
|
|
<!-- 日志相关 -->
|
2019-09-19 20:16:26 +08:00
|
|
|
|
<dependency>
|
2020-07-17 19:59:43 +08:00
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2019-09-19 20:16:26 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-07-17 19:59:43 +08:00
|
|
|
|
<!-- 工具相关 -->
|
2019-09-19 20:16:26 +08:00
|
|
|
|
<dependency>
|
2020-07-17 19:59:43 +08:00
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
|
<artifactId>validation-api</artifactId>
|
2019-09-19 20:16:26 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|