1 Star 11 Fork 1

浪子花梦 / ithm-mall

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.49 KB
一键复制 编辑 原始数据 按行查看 历史
javamenc 提交于 2021-11-28 14:11 . eureka --> spring cloud alibaba
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ithuameng</groupId>
<artifactId>ithuameng-parent</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<description>父工程</description>
<modules>
<module>ithuameng-common</module>
<module>ithuameng-common-db</module>
<module>ithuameng-datatrack</module>
<module>ithuameng-gateway</module>
<module>ithuameng-service</module>
<module>ithuameng-service-api</module>
<module>ithuameng-user-oauth</module>
<module>ithuameng-web</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.4.RELEASE</version>
</parent>
<properties>
<skipTests>true</skipTests>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.51</version>
</dependency>
</dependencies>
<!--管理相关依赖的版本-->
<dependencyManagement>
<dependencies>
<!--
spring cloud
scope: import 可以继承 spring-cloud-dependencies 工程中的依赖
-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2.1.0.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
Java
1
https://gitee.com/ithuameng/mall.git
git@gitee.com:ithuameng/mall.git
ithuameng
mall
ithm-mall
master

搜索帮助