93 lines
3.4 KiB
XML
93 lines
3.4 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.0.RELEASE</spring.cloud.alibaba.version>
|
||
<!-- Web 相关 -->
|
||
<knife4j.version>2.0.2</knife4j.version>
|
||
<!-- RPC 相关 -->
|
||
<dubbo.version>2.7.1</dubbo.version>
|
||
<!-- Transaction 相关 -->
|
||
<seata.version>1.1.0</seata.version>
|
||
<!-- 监控相关 -->
|
||
<skywalking.version>7.0.0</skywalking.version>
|
||
</properties>
|
||
|
||
<!-- 依赖管理 -->
|
||
<dependencyManagement>
|
||
<!-- TODO Spring Boot && Spring Cloud && Spring Cloud Alibaba -->
|
||
<dependencies>
|
||
<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>
|
||
|
||
<!-- Web 相关 -->
|
||
<dependency>
|
||
<groupId>com.github.xiaoymin</groupId>
|
||
<artifactId>knife4j-spring-boot-starter</artifactId>
|
||
<version>${knife4j.version}</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>
|
||
|
||
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
</project>
|