1 Star 0 Fork 3

liup/second-kill

forked from majian/second-kill 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.81 KB
一键复制 编辑 原始数据 按行查看 历史
majian 提交于 2021-01-25 18:43 . 编写kafka 分布式事务
<?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">
<!--在这里继承了spring boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.2.RELEASE</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
<description>spring cloud的商城秒杀系统</description>
<groupId>com.second.kill</groupId>
<artifactId>second-kill</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<!--公共模块 -->
<module>second-kill-common</module>
<!--公共模块 持久化 -->
<module>second-kill-common-persistence</module>
<!--服务中心-->
<module>second-kill-eureka</module>
<!--订单服务 -->
<module>second-kill-order</module>
<!--处理前端请求 -->
<module>second-kill-web</module>
<!--商品服务 -->
<module>second-kill-product</module>
<!--配置中心-配置文件 -->
<module>second-kill-config</module>
<!-- 配置中心服务端-->
<module>second-kill-config-server</module>
</modules>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
<version>1.18.8</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--集成redis -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!--对Open Feign方式调用支持 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<!--JSON解析 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.56</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Finchley.SR2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/liu-p/second-kill.git
git@gitee.com:liu-p/second-kill.git
liu-p
second-kill
second-kill
V2.0

搜索帮助