pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.sunwin</groupId>
  7. <artifactId>swismp</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.sunwin.swismp</groupId>
  11. <artifactId>consumer</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>consumer</name>
  14. <description>consumer</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.sunwin.swismp</groupId>
  21. <artifactId>swismp-api</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-mail</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/org.apache.dubbo/dubbo-spring-boot-starter -->
  41. <dependency>
  42. <groupId>com.alibaba.spring.boot</groupId>
  43. <artifactId>dubbo-spring-boot-starter</artifactId>
  44. <version>2.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.zookeeper</groupId>
  48. <artifactId>zookeeper</artifactId>
  49. <version>3.5.5</version>
  50. <exclusions>
  51. <exclusion>
  52. <artifactId>slf4j-log4j12</artifactId>
  53. <groupId>org.slf4j</groupId>
  54. </exclusion>
  55. <exclusion>
  56. <artifactId>log4j</artifactId>
  57. <groupId>log4j</groupId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- https://mvnrepository.com/artifact/org.apache.curator/curator-framework -->
  62. <dependency>
  63. <groupId>org.apache.curator</groupId>
  64. <artifactId>curator-framework</artifactId>
  65. <version>2.13.0</version>
  66. </dependency>
  67. <!-- https://mvnrepository.com/artifact/org.apache.curator/curator-recipes -->
  68. <dependency>
  69. <groupId>org.apache.curator</groupId>
  70. <artifactId>curator-recipes</artifactId>
  71. <version>2.13.0</version>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/org.apache.curator/curator-client -->
  74. <dependency>
  75. <groupId>org.apache.curator</groupId>
  76. <artifactId>curator-client</artifactId>
  77. <version>2.13.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.101tec</groupId>
  81. <artifactId>zkclient</artifactId>
  82. <version>0.10</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>org.junit.vintage</groupId>
  91. <artifactId>junit-vintage-engine</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <!--json-->
  96. <dependency>
  97. <groupId>com.alibaba</groupId>
  98. <artifactId>fastjson</artifactId>
  99. <version>1.2.47</version>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-lang3</artifactId>
  105. <version>3.8.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.aspectj</groupId>
  109. <artifactId>aspectjweaver</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.openjdk.jol</groupId>
  113. <artifactId>jol-core</artifactId>
  114. <version>0.16</version>
  115. </dependency>
  116. </dependencies>
  117. </project>