pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <groupId>cn.ubitech.ttc</groupId>
  5. <artifactId>ttc-backen</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <modelVersion>4.0.0</modelVersion>
  8. <name>ttc-backen</name>
  9. <!-- 子模块的parent要使用顶层的父模块,继承即可 -->
  10. <parent>
  11. <groupId>cn.ubitech.ttc</groupId>
  12. <artifactId>ttc_5.0</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. </parent>
  15. <dependencies>
  16. <!-- 子模块的springboot不需要指定版本号,因为在parents中已经设置了springboot -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. <!--<exclusions>
  21. <exclusion>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-tomcat</artifactId>
  24. </exclusion>
  25. </exclusions>-->
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-tomcat</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-boot-starter</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <!--<scope>test</scope>-->
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.code.gson</groupId>
  46. <artifactId>gson</artifactId>
  47. </dependency>
  48. <!-- fastdfs配置 -->
  49. <dependency>
  50. <groupId>com.github.tobato</groupId>
  51. <artifactId>fastdfs-client</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>mysql</groupId>
  55. <artifactId>mysql-connector-java</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.httpcomponents</groupId>
  59. <artifactId>httpclient</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>redis.clients</groupId>
  63. <artifactId>jedis</artifactId>
  64. </dependency>
  65. <dependency> <!-- 开启二级缓存 -->
  66. <groupId>org.mybatis.caches</groupId>
  67. <artifactId>mybatis-ehcache</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.kafka</groupId>
  71. <artifactId>spring-kafka</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.github.stuxuhai</groupId>
  75. <artifactId>jpinyin</artifactId>
  76. </dependency>
  77. <!-- 子模块的独立引用 -->
  78. <dependency>
  79. <groupId>cn.ubitech.ttc</groupId>
  80. <artifactId>lombok-maven</artifactId>
  81. <version>1.16.20.0</version>
  82. <!--<scope>compile</scope>-->
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.velocity</groupId>
  86. <artifactId>velocity-engine-core</artifactId>
  87. <version>2.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. <version>4.12</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>cn.ubitech.czits</groupId>
  96. <artifactId>json</artifactId>
  97. <version>1.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-configuration-processor</artifactId>
  102. <optional>true</optional>
  103. </dependency>
  104. <dependency>
  105. <groupId>javax.servlet</groupId>
  106. <artifactId>javax.servlet-api</artifactId>
  107. <version>3.0.1</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>cn.ubitech.ttc</groupId>
  111. <artifactId>fastdfs-client-java</artifactId>
  112. <version>1.0</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>io.springfox</groupId>
  116. <artifactId>springfox-swagger2</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>io.springfox</groupId>
  120. <artifactId>springfox-swagger-ui</artifactId>
  121. </dependency>
  122. <!-- excel导入导出 -->
  123. <dependency>
  124. <groupId>org.apache.poi</groupId>
  125. <artifactId>poi</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.poi</groupId>
  129. <artifactId>poi-ooxml</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.poi</groupId>
  133. <artifactId>poi-scratchpad</artifactId>
  134. <version>RELEASE</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.alibaba</groupId>
  138. <artifactId>druid-spring-boot-starter</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.alibaba</groupId>
  142. <artifactId>fastjson</artifactId>
  143. <version>1.2.12</version>
  144. </dependency>
  145. <!-- https://mvnrepository.com/artifact/com.foxinmy/weixin4j-server -->
  146. <dependency>
  147. <groupId>com.foxinmy</groupId>
  148. <artifactId>weixin4j-server</artifactId>
  149. <version>1.0.0</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>net.sf.json-lib</groupId>
  153. <artifactId>json-lib</artifactId>
  154. <version>2.4</version>
  155. <classifier>jdk15</classifier>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.tencentcloudapi</groupId>
  159. <artifactId>tencentcloud-sdk-java</artifactId>
  160. <version>3.1.20</version>
  161. </dependency>
  162. <!--<dependency>
  163. <groupId>org.apache.tomcat</groupId>
  164. <artifactId>tomcat-catalina</artifactId>
  165. <version>8.0.32</version>
  166. &lt;!&ndash;<scope>provided</scope>&ndash;&gt;
  167. </dependency>-->
  168. <dependency>
  169. <groupId>com.alibaba</groupId>
  170. <artifactId>easyexcel</artifactId>
  171. <!-- <version>2.0.5</version>-->
  172. <!-- <version>3.17</version>-->
  173. <!-- <version>2.0.5</version>-->
  174. <version>2.2.6</version>
  175. </dependency>
  176. </dependencies>
  177. <!--<build>-->
  178. <!--<plugins>-->
  179. <!--<plugin>-->
  180. <!--&lt;!&ndash;该插件主要用途:构建可执行的JAR,该ttc-backen将会被打包成jar,被web、app等直接引用 &ndash;&gt;-->
  181. <!--<groupId>org.springframework.boot</groupId>-->
  182. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  183. <!--<configuration>-->
  184. <!--<classifier>exec</classifier>-->
  185. <!--</configuration>-->
  186. <!--</plugin>-->
  187. <!--</plugins>-->
  188. <!--</build>-->
  189. </project>