pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>ecs-statistic-service</artifactId>
  5. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>com.hhyd.ecs</groupId>
  8. <artifactId>ecs-parent</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <properties>
  12. <skipTests>true</skipTests>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.projectlombok</groupId>
  17. <artifactId>lombok</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.hhyd.ecs</groupId>
  21. <artifactId>ecs-feign-client</artifactId>
  22. <!-- <exclusions>
  23. <exclusion>
  24. <groupId>com.dianping.cat</groupId>
  25. <artifactId>cat-client</artifactId>
  26. </exclusion>
  27. </exclusions> -->
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>org.junit.vintage</groupId>
  36. <artifactId>junit-vintage-engine</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.hhyd.ecs</groupId>
  42. <artifactId>ecs-model</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.hhyd.ecs</groupId>
  46. <artifactId>ecs-plugin-apollo</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-jdbc</artifactId>
  55. </dependency>
  56. <!-- <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-test</artifactId>
  59. </dependency> -->
  60. <!-- xxl-job-core -->
  61. <dependency>
  62. <groupId>com.xuxueli</groupId>
  63. <artifactId>xxl-job-core</artifactId>
  64. </dependency>
  65. <!-- Spring Boot Mybatis 依赖 -->
  66. <dependency>
  67. <groupId>org.mybatis.spring.boot</groupId>
  68. <artifactId>mybatis-spring-boot-starter</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>mysql</groupId>
  72. <artifactId>mysql-connector-java</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>druid</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.mybatis</groupId>
  80. <artifactId>mybatis</artifactId>
  81. <version>3.4.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.mybatis</groupId>
  85. <artifactId>mybatis-spring</artifactId>
  86. <version>1.3.0</version>
  87. </dependency>
  88. <!-- sharding -->
  89. <dependency>
  90. <groupId>io.shardingsphere</groupId>
  91. <artifactId>sharding-jdbc</artifactId>
  92. </dependency>
  93. <!-- swagger -->
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger2</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.springfox</groupId>
  100. <artifactId>springfox-swagger-ui</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>net.sf.json-lib</groupId>
  104. <artifactId>json-lib</artifactId>
  105. <version>2.4</version>
  106. <classifier>jdk15</classifier>
  107. <exclusions>
  108. <exclusion>
  109. <groupId>commons-collections</groupId>
  110. <artifactId>commons-collections</artifactId>
  111. </exclusion>
  112. </exclusions>
  113. </dependency>
  114. <!-- 分页插件 -->
  115. <dependency>
  116. <groupId>com.github.pagehelper</groupId>
  117. <artifactId>pagehelper-spring-boot-starter</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-csv</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.dom4j</groupId>
  125. <artifactId>dom4j</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>jaxen</groupId>
  129. <artifactId>jaxen</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>io.shardingsphere</groupId>
  133. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.hhyd.ecs</groupId>
  137. <artifactId>ecs-security-common</artifactId>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.hhyd.ecs</groupId>
  141. <artifactId>ecs-plugin-swagger2</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>cn.jpush.api</groupId>
  145. <artifactId>jpush-client</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>cn.jpush.api</groupId>
  149. <artifactId>jiguang-common</artifactId>
  150. </dependency>
  151. </dependencies>
  152. </project>