pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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>com.nexo</groupId>
  7. <artifactId>nexo-common</artifactId>
  8. <version>1.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>nexo-common-seata</artifactId>
  12. <description>
  13. nexo-common-seata 分布式事务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.apache.dubbo.extensions</groupId>
  18. <artifactId>dubbo-filter-seata</artifactId>
  19. <version>1.0.1</version>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>io.seata</groupId>
  23. <artifactId>seata-core</artifactId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <!-- SpringBoot Seata -->
  28. <dependency>
  29. <groupId>com.alibaba.cloud</groupId>
  30. <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.apache.logging.log4j</groupId>
  34. <artifactId>*</artifactId>
  35. </exclusion>
  36. <exclusion>
  37. <groupId>org.apache.dubbo.extensions</groupId>
  38. <artifactId>dubbo-filter-seata</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. </dependencies>
  43. </project>