pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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.ruoyi</groupId>
  7. <artifactId>ruoyi-common</artifactId>
  8. <version>0.3.0</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. <!-- SpringBoot Seata -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
  20. </dependency>
  21. <!-- 用于修复 seata 序列化问题 -->
  22. <dependency>
  23. <groupId>com.esotericsoftware</groupId>
  24. <artifactId>kryo</artifactId>
  25. <version>4.0.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>de.javakaffee</groupId>
  29. <artifactId>kryo-serializers</artifactId>
  30. <version>0.45</version>
  31. </dependency>
  32. </dependencies>
  33. </project>