pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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-sys-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>com.hhyd.ecs</groupId>
  17. <artifactId>ecs-model</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.hhyd.ecs</groupId>
  21. <artifactId>ecs-plugin-redis</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.projectlombok</groupId>
  25. <artifactId>lombok</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-aop</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-context-support</artifactId>
  38. </dependency>
  39. <!-- Spring Boot Mybatis 依赖 -->
  40. <dependency>
  41. <groupId>org.mybatis.spring.boot</groupId>
  42. <artifactId>mybatis-spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid</artifactId>
  51. </dependency>
  52. <!--junit-->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-test</artifactId>
  56. <version>2.5.2</version>
  57. <scope>test</scope>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>org.junit.vintage</groupId>
  61. <artifactId>junit-vintage-engine</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <!-- sharding -->
  66. <dependency>
  67. <groupId>io.shardingsphere</groupId>
  68. <artifactId>sharding-jdbc</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>fastjson</artifactId>
  73. </dependency>
  74. <!-- 分页插件 -->
  75. <dependency>
  76. <groupId>com.github.pagehelper</groupId>
  77. <artifactId>pagehelper-spring-boot-starter</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.hhyd.ecs</groupId>
  81. <artifactId>ecs-plugin-security</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.hhyd.ecs</groupId>
  85. <artifactId>ecs-plugin-apollo</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-lang</groupId>
  89. <artifactId>commons-lang</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.deepoove</groupId>
  93. <artifactId>poi-tl</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.jfree</groupId>
  97. <artifactId>jfreechart</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-actuator</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.dom4j</groupId>
  105. <artifactId>dom4j</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>jaxen</groupId>
  109. <artifactId>jaxen</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.freemarker</groupId>
  113. <artifactId>freemarker</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.mapstruct</groupId>
  117. <artifactId>mapstruct</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.hhyd.ecs</groupId>
  121. <artifactId>ecs-plugin-swagger2</artifactId>
  122. <exclusions>
  123. <exclusion>
  124. <groupId>org.mapstruct</groupId>
  125. <artifactId>mapstruct</artifactId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <!-- <dependency>
  130. <groupId>com.dianping.cat</groupId>
  131. <artifactId>cat-client</artifactId>
  132. </dependency> -->
  133. <dependency>
  134. <groupId>cn.jpush.api</groupId>
  135. <artifactId>jpush-client</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>cn.jpush.api</groupId>
  139. <artifactId>jiguang-common</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>junit</groupId>
  143. <artifactId>junit</artifactId>
  144. <version>4.12</version>
  145. <scope>test</scope>
  146. </dependency>
  147. </dependencies>
  148. </project>