1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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>org.dromara</groupId>
- <artifactId>ruoyi-common</artifactId>
- <version>2.4.1</version>
- </parent>
- <groupId>org.dromara</groupId>
- <artifactId>ruoyi-common-seata</artifactId>
- <version>2.4.1</version>
- <description>ruoyi-common-seata 分布式事务</description>
- <dependencies>
- <dependency>
- <groupId>org.dromara</groupId>
- <artifactId>ruoyi-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.dubbo.extensions</groupId>
- <artifactId>dubbo-filter-seata</artifactId>
- <version>3.3.1</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.dubbo.extensions</groupId>
- <artifactId>dubbo-filter-seata</artifactId>
- </exclusion>
- <exclusion>
- <groupId>io.seata</groupId>
- <artifactId>seata-spring-boot-starter</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.seata</groupId>
- <artifactId>seata-spring-boot-starter</artifactId>
- </dependency>
- </dependencies>
- </project>
|