roses/kernel-d-seata/seata-demo-order/pom.xml

55 lines
1.7 KiB
XML
Raw Normal View History

2021-04-20 03:01:43 +00:00
<?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>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-d-seata</artifactId>
<version>7.0.4</version>
2021-04-20 03:01:43 +00:00
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>seata-demo-order</artifactId>
<packaging>jar</packaging>
<dependencies>
2021-04-21 01:45:30 +00:00
<!--feign远程调用-->
2021-04-20 03:01:43 +00:00
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-openfeign-core</artifactId>
<version>2.2.6.RELEASE</version>
</dependency>
2021-04-21 01:45:30 +00:00
<!--demo业务-->
2021-04-20 03:01:43 +00:00
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>seata-demo-storage-api</artifactId>
<version>7.0.4</version>
2021-04-20 03:01:43 +00:00
</dependency>
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>seata-demo-wallet-api</artifactId>
<version>7.0.4</version>
2021-04-20 03:01:43 +00:00
</dependency>
2021-04-21 01:45:30 +00:00
<!--seata分布式事务-->
2021-04-20 03:01:43 +00:00
<dependency>
<groupId>io.seata</groupId>
<artifactId>seata-all</artifactId>
<version>1.3.0</version>
</dependency>
2021-04-21 01:45:30 +00:00
<!--资源api模块-->
<!--用在资源控制器,资源扫描上-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>scanner-api</artifactId>
<version>7.0.4</version>
2021-04-21 01:45:30 +00:00
</dependency>
2021-04-20 03:01:43 +00:00
</dependencies>
</project>