.flattened-pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>io.seata</groupId>
  6. <artifactId>seata-parent</artifactId>
  7. <version>1.6.1</version>
  8. </parent>
  9. <artifactId>seata-saga</artifactId>
  10. <packaging>pom</packaging>
  11. <name>seata-saga 1.6.1</name>
  12. <description>saga top parent for Seata built with Maven</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>io.seata</groupId>
  16. <artifactId>seata-common</artifactId>
  17. <version>1.6.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alibaba</groupId>
  21. <artifactId>fastjson</artifactId>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fasterxml.jackson.core</groupId>
  26. <artifactId>jackson-databind</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.codehaus.groovy</groupId>
  31. <artifactId>groovy-all</artifactId>
  32. </dependency>
  33. </dependencies>
  34. </project>