.flattened-pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <groupId>io.seata</groupId>
  5. <artifactId>seata-saga-engine</artifactId>
  6. <version>1.6.1</version>
  7. <name>seata-saga-engine 1.6.1</name>
  8. <description>saga-engine for Seata built with Maven</description>
  9. <url>https://seata.io</url>
  10. <organization>
  11. <name>Seata</name>
  12. <url>https://github.com/seata</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>Apache License, Version 2.0</name>
  17. <url>https://www.apache.org/licenses/LICENSE-2.0</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>Seata</id>
  24. <name>Seata</name>
  25. <email>dev-seata@googlegroups.com</email>
  26. <url>https://seata.io</url>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git@github.com:seata/seata.git</connection>
  31. <developerConnection>scm:git@github.com:seata/seata.git</developerConnection>
  32. <url>git@github.com:seata/seata.git</url>
  33. </scm>
  34. <issueManagement>
  35. <system>github</system>
  36. <url>https://github.com/seata/seata/issues</url>
  37. </issueManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>io.seata</groupId>
  41. <artifactId>seata-saga-statelang</artifactId>
  42. <version>1.6.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.seata</groupId>
  46. <artifactId>seata-saga-processctrl</artifactId>
  47. <version>1.6.1</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-context</artifactId>
  52. <version>5.3.19</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-beans</artifactId>
  57. <version>5.3.19</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-expression</artifactId>
  62. <version>5.3.19</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.seata</groupId>
  66. <artifactId>seata-common</artifactId>
  67. <version>1.6.1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.codehaus.groovy</groupId>
  71. <artifactId>groovy-all</artifactId>
  72. <version>2.4.4</version>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>org.junit.jupiter</groupId>
  76. <artifactId>junit-jupiter-engine</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>org.junit.platform</groupId>
  80. <artifactId>junit-platform-launcher</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. </dependencies>
  85. </project>