pom.xml 11 KB

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