200 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			200 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			XML
		
	
	
| <?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>onemall</artifactId>
 | ||
|         <groupId>cn.iocoder.mall</groupId>
 | ||
|         <version>1.0-SNAPSHOT</version>
 | ||
|     </parent>
 | ||
|     <modelVersion>4.0.0</modelVersion>
 | ||
| 
 | ||
|     <artifactId>mall-dependencies</artifactId>
 | ||
| 
 | ||
|     <packaging>pom</packaging>
 | ||
|     <name>Onemall Dependencies</name>
 | ||
|     <description>Maven Bom,定义 Onemall 项目的所有依赖的版本</description>
 | ||
| 
 | ||
|     <!-- 属性 -->
 | ||
|     <properties>
 | ||
|         <!-- TODO Spring Boot && Spring Cloud && Spring Cloud Alibaba -->
 | ||
|         <spring.boot.version>2.2.4.RELEASE</spring.boot.version>
 | ||
|         <spring.cloud.version>Hoxton.SR1</spring.cloud.version>
 | ||
|         <spring.cloud.alibaba.version>2.2.1.RELEASE</spring.cloud.alibaba.version>
 | ||
|         <!-- Web 相关 -->
 | ||
|         <knife4j.version>2.0.2</knife4j.version>
 | ||
|         <!-- DB 相关 -->
 | ||
|         <mysql-connector-java.version>5.1.46</mysql-connector-java.version>
 | ||
|         <druid.version>1.1.16</druid.version>
 | ||
|         <mybatis-spring-boot-starter.version>2.0.0</mybatis-spring-boot-starter.version>
 | ||
|         <mybatis.version>3.5.1</mybatis.version>
 | ||
|         <mybatis-plus.version>3.1.1</mybatis-plus.version>
 | ||
|         <!-- RPC 相关 -->
 | ||
|         <dubbo.version>2.7.1</dubbo.version>
 | ||
|         <!-- Transaction 相关 -->
 | ||
|         <seata.version>1.1.0</seata.version>
 | ||
|         <!-- 监控相关 -->
 | ||
|         <skywalking.version>7.0.0</skywalking.version>
 | ||
|         <!-- 工具类相关 -->
 | ||
|         <fastjson.version>1.2.56</fastjson.version>
 | ||
|         <hibernate-validator.version>6.0.16.Final</hibernate-validator.version>
 | ||
|         <hutool.version>5.2.5</hutool.version>
 | ||
|         <spring-boot-starter-data-jest.version>3.2.5.RELEASE</spring-boot-starter-data-jest.version>
 | ||
|     </properties>
 | ||
| 
 | ||
|     <!-- 依赖管理 -->
 | ||
|     <dependencyManagement>
 | ||
|         <dependencies>
 | ||
|             <!-- Spring 体系提供的基础 bom -->
 | ||
|             <dependency>
 | ||
|                 <groupId>org.springframework.boot</groupId>
 | ||
|                 <artifactId>spring-boot-starter-parent</artifactId>
 | ||
|                 <version>${spring.boot.version}</version>
 | ||
|                 <type>pom</type>
 | ||
|                 <scope>import</scope>
 | ||
|             </dependency>
 | ||
|             <dependency>
 | ||
|                 <groupId>org.springframework.cloud</groupId>
 | ||
|                 <artifactId>spring-cloud-dependencies</artifactId>
 | ||
|                 <version>${spring.cloud.version}</version>
 | ||
|                 <type>pom</type>
 | ||
|                 <scope>import</scope>
 | ||
|             </dependency>
 | ||
|             <dependency>
 | ||
|                 <groupId>com.alibaba.cloud</groupId>
 | ||
|                 <artifactId>spring-cloud-alibaba-dependencies</artifactId>
 | ||
|                 <version>${spring.cloud.alibaba.version}</version>
 | ||
|                 <type>pom</type>
 | ||
|                 <scope>import</scope>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <!-- 通用相关 -->
 | ||
|             <dependency>
 | ||
|                 <groupId>cn.iocoder.mall</groupId>
 | ||
|                 <artifactId>common-framework</artifactId>
 | ||
|                 <version>1.0-SNAPSHOT</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <!-- DB 相关 -->
 | ||
|             <dependency>
 | ||
|                 <groupId>mysql</groupId>
 | ||
|                 <artifactId>mysql-connector-java</artifactId>
 | ||
|                 <version>${mysql-connector-java.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <groupId>com.alibaba</groupId>
 | ||
|                 <artifactId>druid-spring-boot-starter</artifactId>
 | ||
|                 <version>${druid.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <groupId>org.mybatis</groupId>
 | ||
|                 <artifactId>mybatis</artifactId>
 | ||
|                 <version>${mybatis.version}</version>
 | ||
|             </dependency>
 | ||
|             <dependency>
 | ||
|                 <groupId>org.mybatis.spring.boot</groupId>
 | ||
|                 <artifactId>mybatis-spring-boot-starter</artifactId>
 | ||
|                 <version>${mybatis-spring-boot-starter.version}</version>
 | ||
|             </dependency>
 | ||
|             <dependency>
 | ||
|                 <groupId>com.baomidou</groupId>
 | ||
|                 <artifactId>mybatis-plus-core</artifactId>
 | ||
|                 <version>${mybatis-plus.version}</version>
 | ||
|             </dependency>
 | ||
|             <dependency>
 | ||
|                 <groupId>com.baomidou</groupId>
 | ||
|                 <artifactId>mybatis-plus-boot-starter</artifactId>
 | ||
|                 <version>${mybatis-plus.version}</version>
 | ||
|                 <exclusions>
 | ||
|                     <exclusion>
 | ||
|                         <groupId>org.springframework.boot</groupId>
 | ||
|                         <artifactId>spring-boot-starter-jdbc</artifactId>
 | ||
|                     </exclusion>
 | ||
|                 </exclusions>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <!-- 自动化配置 Spring Data Jest -->
 | ||
|                 <groupId>com.github.vanroy</groupId>
 | ||
|                 <artifactId>spring-boot-starter-data-jest</artifactId>
 | ||
|                 <version>${spring-boot-starter-data-jest.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <groupId>cn.iocoder.mall</groupId>
 | ||
|                 <artifactId>mall-spring-boot-starter-mybatis</artifactId>
 | ||
|                 <version>1.0-SNAPSHOT</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <!-- Web 相关 -->
 | ||
|             <dependency>
 | ||
|                 <groupId>com.github.xiaoymin</groupId>
 | ||
|                 <artifactId>knife4j-spring-boot-starter</artifactId>
 | ||
|                 <version>${knife4j.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <groupId>cn.iocoder.mall</groupId>
 | ||
|                 <artifactId>mall-spring-boot-starter-web</artifactId>
 | ||
|                 <version>1.0-SNAPSHOT</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <groupId>cn.iocoder.mall</groupId>
 | ||
|                 <artifactId>mall-spring-boot-starter-security</artifactId>
 | ||
|                 <version>1.0-SNAPSHOT</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <groupId>cn.iocoder.mall</groupId>
 | ||
|                 <artifactId>mall-spring-boot-starter-swagger</artifactId>
 | ||
|                 <version>1.0-SNAPSHOT</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <!-- RPC 相关 -->
 | ||
|             <dependency>
 | ||
|                 <groupId>org.apache.dubbo</groupId>
 | ||
|                 <artifactId>dubbo</artifactId>
 | ||
|                 <version>${dubbo.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <!-- Transaction 相关 -->
 | ||
|             <dependency>
 | ||
|                 <groupId>io.seata</groupId>
 | ||
|                 <artifactId>seata-spring-boot-starter</artifactId>
 | ||
|                 <version>${seata.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <!-- 监控相关 -->
 | ||
|             <dependency>
 | ||
|                 <groupId>org.apache.skywalking</groupId>
 | ||
|                 <artifactId>apm-toolkit-trace</artifactId>
 | ||
|                 <version>${skywalking.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <!-- 工具类相关 -->
 | ||
|             <dependency>
 | ||
|                 <groupId>com.alibaba</groupId>
 | ||
|                 <artifactId>fastjson</artifactId>
 | ||
|                 <version>${fastjson.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <!-- hutool 工具类-->
 | ||
|                 <groupId>cn.hutool</groupId>
 | ||
|                 <artifactId>hutool-all</artifactId>
 | ||
|                 <version>${hutool.version}</version>
 | ||
|             </dependency>
 | ||
| 
 | ||
|             <dependency>
 | ||
|                 <groupId>org.hibernate</groupId>
 | ||
|                 <artifactId>hibernate-validator</artifactId>
 | ||
|                 <version>${hibernate-validator.version}</version>
 | ||
|             </dependency>
 | ||
|         </dependencies>
 | ||
|     </dependencyManagement>
 | ||
| 
 | ||
| </project>
 |