pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.xazhcx.aqpt</groupId>
  6. <artifactId>aqpt-parent</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>aqpt-parent</name>
  9. <packaging>pom</packaging>
  10. <description>双重预防安全生产管理平台</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.3.0.RELEASE</version>
  15. </parent>
  16. <modules>
  17. <module>aqpt-web</module>
  18. <module>aqpt-common</module>
  19. <module>aqpt-core</module>
  20. <module>aqpt-service</module>
  21. <module>aqpt-entity</module>
  22. <module>aqpt-flowable</module>
  23. <module>aqpt-online</module>
  24. <module>aqpt-application-center</module>
  25. <module>aqpt-generator</module>
  26. <module>aqpt-shuili</module>
  27. <module>aqpt-schedule</module>
  28. <module>aqpt-quartz-jobs</module>
  29. <module>aqpt-safety-evaluation</module>
  30. </modules>
  31. <properties>
  32. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  33. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  34. <java.version>1.8</java.version>
  35. <rongcloud.version>3.0.6</rongcloud.version>
  36. <t-io.version>3.6.1.v20200512-RELEASE</t-io.version>
  37. <bitwalker.version>1.21</bitwalker.version>
  38. <oshi.version>3.9.1</oshi.version>
  39. <flowable.version>6.4.2</flowable.version>
  40. <skipTests>true</skipTests>
  41. <mybatis-plus.version>3.2.0</mybatis-plus.version>
  42. <grpc.version>2.5.0.RELEASE</grpc.version>
  43. <osgl-tool.version>1.24.0</osgl-tool.version>
  44. <p6spy.version>3.9.0</p6spy.version>
  45. <japidocs.version>1.4.4</japidocs.version>
  46. </properties>
  47. <dependencies>
  48. <!-- &lt;!&ndash; https://mvnrepository.com/artifact/org.apache.dubbo/dubbo-spring-boot-starter &ndash;&gt;-->
  49. <!-- <dependency>-->
  50. <!-- <groupId>org.apache.dubbo</groupId>-->
  51. <!-- <artifactId>dubbo-spring-boot-starter</artifactId>-->
  52. <!-- <version>2.7.5</version>-->
  53. <!-- </dependency>-->
  54. <!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-server -->
  55. <!-- <dependency>-->
  56. <!-- <groupId>de.codecentric</groupId>-->
  57. <!-- <artifactId>spring-boot-admin-starter-server</artifactId>-->
  58. <!-- <version>2.2.3</version>-->
  59. <!-- </dependency>-->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-web</artifactId>
  63. <!-- 移除掉默认支持的 Tomcat -->
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-tomcat</artifactId>
  68. </exclusion>
  69. <!--排除默认的tomcat-jdbc-->
  70. <exclusion>
  71. <groupId>org.apache.tomcat</groupId>
  72. <artifactId>tomcat-jdbc</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-test</artifactId>
  79. </dependency>
  80. <!-- undertow 容器 -->
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-undertow</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-aop</artifactId>
  88. </dependency>
  89. <!-- 添加redis支持-->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-data-redis</artifactId>
  93. <exclusions>
  94. <exclusion>
  95. <artifactId>spring-context-support</artifactId>
  96. <groupId>org.springframework</groupId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.security</groupId>
  102. <artifactId>spring-security-jwt</artifactId>
  103. <version>1.0.7.RELEASE</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.projectlombok</groupId>
  107. <artifactId>lombok</artifactId>
  108. <optional>true</optional>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.baomidou</groupId>
  112. <artifactId>mybatis-plus-boot-starter</artifactId>
  113. <version>${mybatis-plus.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.mybatis</groupId>
  117. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  118. <version>1.0.2</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.baomidou</groupId>
  122. <artifactId>mybatis-plus-generator</artifactId>
  123. <version>${mybatis-plus.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.velocity</groupId>
  127. <artifactId>velocity-engine-core</artifactId>
  128. <version>2.1</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.github.pagehelper</groupId>
  132. <artifactId>pagehelper-spring-boot-starter</artifactId>
  133. <version>1.2.13</version>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/p6spy/p6spy -->
  136. <dependency>
  137. <groupId>p6spy</groupId>
  138. <artifactId>p6spy</artifactId>
  139. <version>${p6spy.version}</version>
  140. </dependency>
  141. <!-- mysql -->
  142. <dependency>
  143. <groupId>mysql</groupId>
  144. <artifactId>mysql-connector-java</artifactId>
  145. </dependency>
  146. <!--poi-->
  147. <dependency>
  148. <groupId>org.apache.poi</groupId>
  149. <artifactId>poi</artifactId>
  150. <version>4.1.0</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.poi</groupId>
  154. <artifactId>poi-ooxml</artifactId>
  155. <version>4.1.0</version>
  156. </dependency>
  157. <!--工具jar-->
  158. <dependency>
  159. <groupId>cn.hutool</groupId>
  160. <artifactId>hutool-all</artifactId>
  161. <version>5.3.5</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.alibaba</groupId>
  165. <artifactId>fastjson</artifactId>
  166. <version>1.2.73</version>
  167. </dependency>
  168. <!--汉字转拼音及首字母-->
  169. <dependency>
  170. <groupId>com.belerweb</groupId>
  171. <artifactId>pinyin4j</artifactId>
  172. <version>2.5.1</version>
  173. </dependency>
  174. <!--jwt-->
  175. <dependency>
  176. <groupId>io.jsonwebtoken</groupId>
  177. <artifactId>jjwt</artifactId>
  178. <version>0.9.1</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.google.guava</groupId>
  182. <artifactId>guava</artifactId>
  183. <version>29.0-jre</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.google.zxing</groupId>
  187. <artifactId>core</artifactId>
  188. <version>3.4.0</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>com.google.zxing</groupId>
  192. <artifactId>javase</artifactId>
  193. <version>3.4.0</version>
  194. </dependency>
  195. <!--极光文档-->
  196. <dependency>
  197. <groupId>cn.jpush.api</groupId>
  198. <artifactId>jpush-client</artifactId>
  199. <version>3.5.3</version>
  200. <exclusions>
  201. <exclusion>
  202. <artifactId>gson</artifactId>
  203. <groupId>com.google.code.gson</groupId>
  204. </exclusion>
  205. </exclusions>
  206. </dependency>
  207. <!--短信发送验证-->
  208. <dependency>
  209. <groupId>com.aliyun</groupId>
  210. <artifactId>aliyun-java-sdk-core</artifactId>
  211. <version>3.2.9</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>com.aliyun</groupId>
  215. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  216. <version>1.0.0</version>
  217. </dependency>
  218. <!--融云-->
  219. <dependency>
  220. <groupId>cn.rongcloud.im</groupId>
  221. <artifactId>server-sdk-java</artifactId>
  222. <version>${rongcloud.version}</version>
  223. </dependency>
  224. <!--ws-->
  225. <dependency>
  226. <groupId>org.t-io</groupId>
  227. <artifactId>tio-core</artifactId>
  228. <version>${t-io.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.java-websocket</groupId>
  232. <artifactId>Java-WebSocket</artifactId>
  233. <version>1.5.1</version>
  234. </dependency>
  235. <!--Swagger2依赖 -->
  236. <dependency>
  237. <groupId>io.springfox</groupId>
  238. <artifactId>springfox-swagger2</artifactId>
  239. <version>2.9.2</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>io.springfox</groupId>
  243. <artifactId>springfox-swagger-ui</artifactId>
  244. <version>2.9.2</version>
  245. </dependency>
  246. <!-- 热部署 -->
  247. <dependency>
  248. <groupId>org.springframework.boot</groupId>
  249. <artifactId>spring-boot-devtools</artifactId>
  250. <!-- <optional>true</optional>-->
  251. </dependency>
  252. <dependency>
  253. <groupId>org.jetbrains</groupId>
  254. <artifactId>annotations</artifactId>
  255. <version>19.0.0</version>
  256. <scope>compile</scope>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.github.abel533</groupId>
  260. <artifactId>ECharts</artifactId>
  261. <version>3.0.0.6</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.osgl</groupId>
  265. <artifactId>osgl-tool</artifactId>
  266. <version>${osgl-tool.version}</version>
  267. </dependency>
  268. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
  269. <dependency>
  270. <groupId>org.aspectj</groupId>
  271. <artifactId>aspectjrt</artifactId>
  272. <version>1.9.5</version>
  273. </dependency>
  274. <!--mapstruct就提供了vo与po自动转换的一种方式。-->
  275. <!--https://www.cnblogs.com/TimerHotel/p/springboot16.html-->
  276. <!--https://mapstruct.org/-->
  277. <!-- <dependency>-->
  278. <!-- <groupId>org.mapstruct</groupId>-->
  279. <!-- <artifactId>mapstruct-jdk8</artifactId>-->
  280. <!-- <version>1.3.1.Final</version>-->
  281. <!-- </dependency>-->
  282. <!-- <dependency>-->
  283. <!-- <groupId>org.mapstruct</groupId>-->
  284. <!-- <artifactId>mapstruct-processor</artifactId>-->
  285. <!-- <version>1.3.1.Final</version>-->
  286. <!-- </dependency>-->
  287. <!--javamelody-->
  288. <!-- <dependency>-->
  289. <!-- <groupId>net.bull.javamelody</groupId>-->
  290. <!-- <artifactId>javamelody-spring-boot-starter</artifactId>-->
  291. <!-- <version>1.83.0</version>-->
  292. <!-- </dependency>-->
  293. <!-- https://mvnrepository.com/artifact/com.github.tobato/fastdfs-client -->
  294. <!--https://github.com/tobato/FastDFS_Client-->
  295. <dependency>
  296. <groupId>com.github.tobato</groupId>
  297. <artifactId>fastdfs-client</artifactId>
  298. <version>1.26.7</version>
  299. </dependency>
  300. <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator -->
  301. <dependency>
  302. <groupId>net.coobird</groupId>
  303. <artifactId>thumbnailator</artifactId>
  304. <version>0.4.8</version>
  305. </dependency>
  306. <!-- cmyk格式图片转换 -->
  307. <!--https://github.com/haraldk/TwelveMonkeys-->
  308. <dependency>
  309. <groupId>com.twelvemonkeys.imageio</groupId>
  310. <artifactId>imageio-jpeg</artifactId>
  311. <version>3.5</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>com.twelvemonkeys.imageio</groupId>
  315. <artifactId>imageio-tiff</artifactId>
  316. <version>3.5</version>
  317. </dependency>
  318. <!-- 解析客户端操作系统、浏览器等 -->
  319. <dependency>
  320. <groupId>eu.bitwalker</groupId>
  321. <artifactId>UserAgentUtils</artifactId>
  322. <version>${bitwalker.version}</version>
  323. </dependency>
  324. <!-- 获取系统信息 -->
  325. <dependency>
  326. <groupId>com.github.oshi</groupId>
  327. <artifactId>oshi-core</artifactId>
  328. <version>${oshi.version}</version>
  329. </dependency>
  330. <!-- https://mvnrepository.com/artifact/xerces/xercesImpl -->
  331. <dependency>
  332. <groupId>xerces</groupId>
  333. <artifactId>xercesImpl</artifactId>
  334. <version>2.12.0</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>io.github.yedaxia</groupId>
  338. <artifactId>japidocs</artifactId>
  339. <version>${japidocs.version}</version>
  340. </dependency>
  341. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  342. <dependency>
  343. <groupId>com.alibaba</groupId>
  344. <artifactId>easyexcel</artifactId>
  345. <version>2.2.3</version>
  346. </dependency>
  347. </dependencies>
  348. </project>