54 lines
2.1 KiB
XML
54 lines
2.1 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>common</artifactId>
|
|||
|
<groupId>cn.iocoder.mall</groupId>
|
|||
|
<version>1.0-SNAPSHOT</version>
|
|||
|
</parent>
|
|||
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
|||
|
<artifactId>common-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.6s.RELEASE</spring.boot.version>
|
|||
|
<spring.cloud.version>Hoxton.SR1</spring.cloud.version>
|
|||
|
<spring.cloud.alibaba.version>2.2.0.RELEASE</spring.cloud.alibaba.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>
|
|||
|
</dependencies>
|
|||
|
</dependencyManagement>
|
|||
|
|
|||
|
</project>
|