pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.xyzc</groupId>
  8. <artifactId>xyzc-common</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>xyzc-common-seata</artifactId>
  12. <description>
  13. xyzc-common-seata 分布式事务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.xyzc</groupId>
  18. <artifactId>xyzc-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. </dependencies>
  47. </project>