No Description

pom.xml 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>org.dromara</groupId>
  7. <artifactId>ruoyi-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-common-seata</artifactId>
  12. <description>
  13. ruoyi-common-seata 分布式事务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.dromara</groupId>
  18. <artifactId>ruoyi-common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.dubbo.extensions</groupId>
  22. <artifactId>dubbo-filter-seata</artifactId>
  23. <version>1.0.1</version>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>io.seata</groupId>
  27. <artifactId>seata-core</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!-- SpringBoot Seata -->
  32. <dependency>
  33. <groupId>com.alibaba.cloud</groupId>
  34. <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.apache.logging.log4j</groupId>
  38. <artifactId>*</artifactId>
  39. </exclusion>
  40. <exclusion>
  41. <groupId>org.apache.dubbo.extensions</groupId>
  42. <artifactId>dubbo-filter-seata</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.com.kingbase</groupId>
  48. <artifactId>kingbase8</artifactId>
  49. </dependency>
  50. </dependencies>
  51. </project>