.flattened-pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  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-spring-autoconfigure</artifactId>
  10. <packaging>pom</packaging>
  11. <name>seata-spring-autoconfigure 1.6.1</name>
  12. <description>spring-autoconfigure top parent for Seata built with Maven</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>io.seata</groupId>
  16. <artifactId>seata-all</artifactId>
  17. <version>1.6.1</version>
  18. <optional>true</optional>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-autoconfigure</artifactId>
  23. <optional>true</optional>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-configuration-processor</artifactId>
  28. <optional>true</optional>
  29. </dependency>
  30. </dependencies>
  31. </project>