.flattened-pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-discovery-eureka</artifactId>
  6. <version>1.6.1</version>
  7. <name>seata-discovery-eureka 1.6.1</name>
  8. <description>discovery-eureka 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-discovery-core</artifactId>
  42. <version>1.6.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.netflix.eureka</groupId>
  46. <artifactId>eureka-client</artifactId>
  47. <version>1.10.17</version>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>com.thoughtworks.xstream</groupId>
  51. <artifactId>xstream</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.thoughtworks.xstream</groupId>
  57. <artifactId>xstream</artifactId>
  58. <version>1.4.19</version>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>org.glassfish.jersey</groupId>
  62. <artifactId>*</artifactId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.netflix.archaius</groupId>
  68. <artifactId>archaius-core</artifactId>
  69. <version>0.7.6</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>javax.inject</groupId>
  73. <artifactId>javax.inject</artifactId>
  74. <version>1</version>
  75. </dependency>
  76. </dependencies>
  77. </project>