45 lines
1.3 KiB
XML
45 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
<project
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-parent</artifactId>
|
|
<version>0.0.1</version>
|
|
<relativePath>../mall-ebtp-cloud-parent</relativePath>
|
|
</parent>
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-seata-starter</artifactId>
|
|
<version>0.0.1</version>
|
|
<name>mall-ebtp-cloud-seata-starter</name>
|
|
|
|
<properties>
|
|
<seata.version>1.3.0</seata.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-jpa-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-alibaba-seata</artifactId>
|
|
<version>2.1.0.RELEASE</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>seata-all</artifactId>
|
|
<groupId>io.seata</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.seata</groupId>
|
|
<artifactId>seata-all</artifactId>
|
|
<version>${seata.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|