seata-config-core-1.5.2.pom 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>io.seata</groupId>
  6. <artifactId>seata-config-core</artifactId>
  7. <version>1.5.2</version>
  8. <name>seata-config-core 1.5.2</name>
  9. <description>config-core for Seata built with Maven</description>
  10. <url>https://seata.io</url>
  11. <organization>
  12. <name>Seata</name>
  13. <url>https://github.com/seata</url>
  14. </organization>
  15. <licenses>
  16. <license>
  17. <name>Apache License, Version 2.0</name>
  18. <url>https://www.apache.org/licenses/LICENSE-2.0</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <developers>
  23. <developer>
  24. <id>Seata</id>
  25. <name>Seata</name>
  26. <email>dev-seata@googlegroups.com</email>
  27. <url>https://seata.io</url>
  28. </developer>
  29. </developers>
  30. <scm>
  31. <connection>scm:git@github.com:seata/seata.git</connection>
  32. <developerConnection>scm:git@github.com:seata/seata.git</developerConnection>
  33. <url>git@github.com:seata/seata.git</url>
  34. </scm>
  35. <issueManagement>
  36. <system>github</system>
  37. <url>https://github.com/seata/seata/issues</url>
  38. </issueManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>io.seata</groupId>
  42. <artifactId>seata-common</artifactId>
  43. <version>1.5.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.typesafe</groupId>
  47. <artifactId>config</artifactId>
  48. <version>1.2.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.yaml</groupId>
  52. <artifactId>snakeyaml</artifactId>
  53. <version>1.27</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>cglib</groupId>
  57. <artifactId>cglib</artifactId>
  58. <version>3.1</version>
  59. </dependency>
  60. </dependencies>
  61. </project>