pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>app</artifactId>
  7. <groupId>com.nantian.cloud</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dbc-app</artifactId>
  12. <dependencies>
  13. <!-- 内蒙依赖 -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-data-jpa</artifactId>
  17. <version>2.5.4</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.github.pagehelper</groupId>
  21. <artifactId>pagehelper</artifactId>
  22. <version>5.3.0</version>
  23. </dependency>
  24. <!--feign 接口-->
  25. <!--<dependency>
  26. <groupId>com.github.pagehelper</groupId>
  27. <artifactId>pagehelper-spring-boot-starter</artifactId>
  28. <version>1.2.10</version>
  29. </dependency>-->
  30. <!--任务调度-->
  31. <dependency>
  32. <groupId>com.nantian</groupId>
  33. <artifactId>scheduling-platform-core</artifactId>
  34. <version>2.4.0</version>
  35. </dependency>
  36. <!--健康检查-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-actuator</artifactId>
  40. </dependency>
  41. <!--热部署 ctrl+F9 需要注意 这个启动之后不能使用feign !!!!!!!!!-->
  42. <!-- <dependency>-->
  43. <!-- <groupId>org.springframework.boot</groupId>-->
  44. <!-- <artifactId>spring-boot-devtools</artifactId>-->
  45. <!-- <optional>true</optional> &lt;!&ndash; 防止将devtools依赖传递到其他模块中 &ndash;&gt;-->
  46. <!-- </dependency>-->
  47. <dependency>
  48. <groupId>com.nantian.cloud</groupId>
  49. <artifactId>sc-common-core</artifactId>
  50. <version>1.0-SNAPSHOT</version>
  51. </dependency>
  52. <!--hutool-->
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. <version>4.6.8</version>
  57. </dependency>
  58. <!--server-api-->
  59. <dependency>
  60. <groupId>javax.servlet</groupId>
  61. <artifactId>javax.servlet-api</artifactId>
  62. <version>4.0.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.itextpdf</groupId>
  66. <artifactId>itextpdf</artifactId>
  67. <version>5.5.13.1</version>
  68. </dependency>
  69. <!--feign 依赖-->
  70. <dependency>
  71. <groupId>io.github.openfeign</groupId>
  72. <artifactId>feign-okhttp</artifactId>
  73. <version>10.2.3</version>
  74. <exclusions>
  75. <exclusion>
  76. <artifactId>okio</artifactId>
  77. <groupId>com.squareup.okio</groupId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.cloud</groupId>
  83. <artifactId>spring-cloud-starter-openfeign</artifactId>
  84. <version>2.1.3.RELEASE</version>
  85. </dependency>
  86. <!--hibernate-validator-->
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-validation</artifactId>
  90. <version>2.1.9.RELEASE</version>
  91. </dependency>
  92. <!--json模块-->
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-json</artifactId>
  96. <version>2.1.9.RELEASE</version>
  97. </dependency>
  98. <!--TTL-->
  99. <dependency>
  100. <groupId>com.alibaba</groupId>
  101. <artifactId>transmittable-thread-local</artifactId>
  102. <version>2.10.2</version>
  103. </dependency>
  104. <!--swagger 依赖-->
  105. <dependency>
  106. <groupId>io.swagger</groupId>
  107. <artifactId>swagger-annotations</artifactId>
  108. <version>1.5.22</version>
  109. </dependency>
  110. <!--安全模块 -->
  111. <dependency>
  112. <groupId>org.springframework.cloud</groupId>
  113. <artifactId>spring-cloud-starter-oauth2</artifactId>
  114. <version>2.1.4.RELEASE</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>io.springfox</groupId>
  118. <artifactId>springfox-swagger2</artifactId>
  119. <version>2.9.2</version>
  120. <exclusions>
  121. <exclusion>
  122. <artifactId>swagger-annotations</artifactId>
  123. <groupId>io.swagger</groupId>
  124. </exclusion>
  125. </exclusions>
  126. </dependency>
  127. <!--knife4j是为Java MVC框架集成Swagger生成Api文档的增强-->
  128. <dependency>
  129. <groupId>com.github.xiaoymin</groupId>
  130. <artifactId>knife4j-micro-spring-boot-starter</artifactId>
  131. <version>1.9.6</version>
  132. <exclusions>
  133. <exclusion>
  134. <artifactId>swagger-models</artifactId>
  135. <groupId>io.swagger</groupId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.baomidou</groupId>
  141. <artifactId>mybatis-plus-extension</artifactId>
  142. <version>3.1.0</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-data-redis</artifactId>
  147. <version>2.1.9.RELEASE</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  152. </dependency>
  153. <dependency>
  154. <groupId>io.minio</groupId>
  155. <artifactId>minio</artifactId>
  156. <version>6.0.8</version>
  157. </dependency>
  158. <!-- -->
  159. <!--upms api、model 模块-->
  160. <dependency>
  161. <groupId>com.nantian.cloud</groupId>
  162. <artifactId>sc-upms-api</artifactId>
  163. <version>1.0-SNAPSHOT</version>
  164. </dependency>
  165. <!--日志处理-->
  166. <dependency>
  167. <groupId>com.nantian.cloud</groupId>
  168. <artifactId>sc-common-log</artifactId>
  169. <version>1.0-SNAPSHOT</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.nantian.cloud</groupId>
  173. <artifactId>sc-common-data</artifactId>
  174. <version>1.0-SNAPSHOT</version>
  175. </dependency>
  176. <!--swagger-->
  177. <dependency>
  178. <groupId>com.nantian.cloud</groupId>
  179. <artifactId>sc-common-swagger</artifactId>
  180. <version>1.0-SNAPSHOT</version>
  181. </dependency>
  182. <!--文件系统-->
  183. <dependency>
  184. <groupId>com.nantian.cloud</groupId>
  185. <artifactId>sc-common-minio</artifactId>
  186. <version>1.0-SNAPSHOT</version>
  187. </dependency>
  188. <!--注册中心客户端-->
  189. <dependency>
  190. <groupId>com.alibaba.cloud</groupId>
  191. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  192. </dependency>
  193. <!--配置中心客户端-->
  194. <dependency>
  195. <groupId>com.alibaba.cloud</groupId>
  196. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  197. </dependency>
  198. <!--spring security 、oauth、jwt依赖-->
  199. <dependency>
  200. <groupId>com.nantian.cloud</groupId>
  201. <artifactId>sc-common-security</artifactId>
  202. <version>1.0-SNAPSHOT</version>
  203. </dependency>
  204. <!--支持动态路由配置 -->
  205. <!-- <dependency>
  206. <groupId>com.nantian.cloud</groupId>
  207. <artifactId>sc-common-gateway</artifactId>
  208. <version>1.0-SNAPSHOT</version>
  209. </dependency>-->
  210. <!--mybatis-->
  211. <dependency>
  212. <groupId>com.baomidou</groupId>
  213. <artifactId>mybatis-plus-boot-starter</artifactId>
  214. <exclusions>
  215. <exclusion>
  216. <groupId>org.mybatis</groupId>
  217. <artifactId>mybatis</artifactId>
  218. </exclusion>
  219. </exclusions>
  220. <version>3.1.0</version>
  221. </dependency>
  222. <!-- druid 连接池 -->
  223. <dependency>
  224. <groupId>com.alibaba</groupId>
  225. <artifactId>druid-spring-boot-starter</artifactId>
  226. <version>1.1.18</version>
  227. </dependency>
  228. <!--数据库-->
  229. <dependency>
  230. <groupId>mysql</groupId>
  231. <artifactId>mysql-connector-java</artifactId>
  232. </dependency>
  233. <!--web 模块-->
  234. <!-- <dependency>-->
  235. <!-- <groupId>org.springframework.boot</groupId>-->
  236. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  237. <!-- </dependency>-->
  238. <!--undertow容器-->
  239. <dependency>
  240. <groupId>org.springframework.boot</groupId>
  241. <artifactId>spring-boot-starter-undertow</artifactId>
  242. </dependency>
  243. <!--poi-->
  244. <dependency>
  245. <groupId>org.apache.poi</groupId>
  246. <artifactId>poi</artifactId>
  247. <version>3.17</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>org.apache.poi</groupId>
  251. <artifactId>poi-ooxml</artifactId>
  252. <version>3.17</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.apache.poi</groupId>
  256. <artifactId>poi-ooxml-schemas</artifactId>
  257. <version>3.17</version>
  258. </dependency>
  259. <!-- 阿里开源EXCEL -->
  260. <!-- <dependency>-->
  261. <!-- <groupId>com.alibaba</groupId>-->
  262. <!-- <artifactId>easyexcel</artifactId>-->
  263. <!-- <version>2.1.6</version>-->
  264. <!-- </dependency>-->
  265. <dependency>
  266. <groupId>com.alibaba</groupId>
  267. <artifactId>easyexcel</artifactId>
  268. <version>2.2.9</version>
  269. </dependency>
  270. </dependencies>
  271. <build>
  272. <plugins>
  273. <plugin>
  274. <groupId>org.springframework.boot</groupId>
  275. <artifactId>spring-boot-maven-plugin</artifactId>
  276. </plugin>
  277. <plugin>
  278. <groupId>com.spotify</groupId>
  279. <artifactId>docker-maven-plugin</artifactId>
  280. </plugin>
  281. <plugin>
  282. <groupId>org.apache.maven.plugins</groupId>
  283. <artifactId>maven-resources-plugin</artifactId>
  284. <configuration>
  285. <nonFilteredFileExtensions>
  286. <nonFilteredFileExtension>sql</nonFilteredFileExtension>
  287. <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
  288. <nonFilteredFileExtension>xls</nonFilteredFileExtension>
  289. </nonFilteredFileExtensions>
  290. </configuration>
  291. </plugin>
  292. </plugins>
  293. </build>
  294. </project>