pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  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. <!-- 模块信息 -->
  6. <groupId>com.sckj</groupId>
  7. <artifactId>taphole-java</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0.0</version>
  10. <modelVersion>4.0.0</modelVersion>
  11. <modules>
  12. <module>taphole-admin</module>
  13. <module>taphole-front</module>
  14. <module>taphole-common</module>
  15. <module>taphole-generator</module>
  16. <module>taphole-device</module>
  17. <module>taphole-warn</module>
  18. <module>taphole-iron</module>
  19. <module>taphole-opc</module>
  20. <module>taphole-opc-start</module>
  21. <module>taphole-l2</module>
  22. <module>taphole-l2-start</module>
  23. </modules>
  24. <!-- 特性信息 -->
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <maven.compiler.source>1.8</maven.compiler.source>
  29. <maven.compiler.target>1.8</maven.compiler.target>
  30. <taphole.version>1.0.0</taphole.version>
  31. <java.version>1.8</java.version>
  32. <log4j2.version>2.16.0</log4j2.version>
  33. <mysql-connector.version>5.1.49</mysql-connector.version>
  34. <mybatis-plus.version>3.5.2</mybatis-plus.version>
  35. <mybatis-plus-join.version>1.2.4</mybatis-plus-join.version>
  36. <pagehelper.version>1.4.5</pagehelper.version>
  37. <lombok.version>1.18.24</lombok.version>
  38. <fastJson2.version>2.0.16</fastJson2.version>
  39. <commons-lang3.version>3.12.0</commons-lang3.version>
  40. <commons.io.version>2.11.0</commons.io.version>
  41. <commons-pool2.version>2.11.1</commons-pool2.version>
  42. <google-gson.version>2.9.0</google-gson.version>
  43. <kaptcha.version>2.3.2</kaptcha.version>
  44. <bitwalker.version>1.2.4</bitwalker.version>
  45. <oshi-core.version>6.1.2</oshi-core.version>
  46. <sa-token.version>1.32.0</sa-token.version>
  47. <sa-token-redis.version>1.32.0</sa-token-redis.version>
  48. <easyexcel.version>3.3.4</easyexcel.version>
  49. <quartz-scheduler.version>2.3.2</quartz-scheduler.version>
  50. <qiniu.version>7.9.5</qiniu.version>
  51. <qcloud-version>5.6.54</qcloud-version>
  52. <tencentcloudapi.version>3.1.411</tencentcloudapi.version>
  53. <aliyun-oss.version>3.10.2</aliyun-oss.version>
  54. <aliyun-java.version>4.5.16</aliyun-java.version>
  55. <weixin.version>4.4.0</weixin.version>
  56. <knife4j>3.0.3</knife4j>
  57. <socketio>2.0.3</socketio>
  58. <druid.version>1.2.23</druid.version>
  59. <milo.version>0.6.13</milo.version>
  60. <fastexcel.version>1.1.0</fastexcel.version>
  61. </properties>
  62. <!-- 依赖声明 -->
  63. <dependencyManagement>
  64. <dependencies>
  65. <!-- SpringBoot-->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-dependencies</artifactId>
  69. <version>2.7.5</version>
  70. <type>pom</type>
  71. <scope>import</scope>
  72. </dependency>
  73. <!-- Mysql-Connector -->
  74. <dependency>
  75. <groupId>mysql</groupId>
  76. <artifactId>mysql-connector-java</artifactId>
  77. <version>${mysql-connector.version}</version>
  78. </dependency>
  79. <!-- MyBatis-Plus -->
  80. <dependency>
  81. <groupId>com.baomidou</groupId>
  82. <artifactId>mybatis-plus-boot-starter</artifactId>
  83. <version>${mybatis-plus.version}</version>
  84. </dependency>
  85. <!-- MyBatis-Plus-Join -->
  86. <dependency>
  87. <groupId>com.github.yulichang</groupId>
  88. <artifactId>mybatis-plus-join</artifactId>
  89. <version>${mybatis-plus-join.version}</version>
  90. </dependency>
  91. <!-- MyBatis-PageHelper -->
  92. <dependency>
  93. <groupId>com.github.pagehelper</groupId>
  94. <artifactId>pagehelper-spring-boot-starter</artifactId>
  95. <version>${pagehelper.version}</version>
  96. </dependency>
  97. <!-- Pool2 -->
  98. <dependency>
  99. <groupId>org.apache.commons</groupId>
  100. <artifactId>commons-pool2</artifactId>
  101. <version>${commons-pool2.version}</version>
  102. </dependency>
  103. <!-- Lombok -->
  104. <dependency>
  105. <groupId>org.projectlombok</groupId>
  106. <artifactId>lombok</artifactId>
  107. <version>${lombok.version}</version>
  108. </dependency>
  109. <!-- Fastjson2 -->
  110. <dependency>
  111. <groupId>com.alibaba.fastjson2</groupId>
  112. <artifactId>fastjson2</artifactId>
  113. <version>${fastJson2.version}</version>
  114. </dependency>
  115. <!-- kaptCha -->
  116. <dependency>
  117. <groupId>com.github.penggle</groupId>
  118. <artifactId>kaptcha</artifactId>
  119. <version>${kaptcha.version}</version>
  120. </dependency>
  121. <!-- SaToken -->
  122. <dependency>
  123. <groupId>cn.dev33</groupId>
  124. <artifactId>sa-token-spring-boot-starter</artifactId>
  125. <version>${sa-token.version}</version>
  126. </dependency>
  127. <!-- SaToken-Redis -->
  128. <dependency>
  129. <groupId>cn.dev33</groupId>
  130. <artifactId>sa-token-dao-redis-jackson</artifactId>
  131. <version>${sa-token-redis.version}</version>
  132. </dependency>
  133. <!-- Quartz-Scheduler -->
  134. <dependency>
  135. <groupId>org.quartz-scheduler</groupId>
  136. <artifactId>quartz</artifactId>
  137. <version>${quartz-scheduler.version}</version>
  138. </dependency>
  139. <!-- Gson工具 -->
  140. <dependency>
  141. <groupId>com.google.code.gson</groupId>
  142. <artifactId>gson</artifactId>
  143. <version>${google-gson.version}</version>
  144. </dependency>
  145. <!-- UA工具 -->
  146. <dependency>
  147. <groupId>nl.bitwalker</groupId>
  148. <artifactId>UserAgentUtils</artifactId>
  149. <version>${bitwalker.version}</version>
  150. </dependency>
  151. <!-- Str工具 -->
  152. <dependency>
  153. <groupId>org.apache.commons</groupId>
  154. <artifactId>commons-lang3</artifactId>
  155. <version>${commons-lang3.version}</version>
  156. </dependency>
  157. <!-- IO工具 -->
  158. <dependency>
  159. <groupId>commons-io</groupId>
  160. <artifactId>commons-io</artifactId>
  161. <version>${commons.io.version}</version>
  162. </dependency>
  163. <!-- 七牛云OSS -->
  164. <dependency>
  165. <groupId>com.qiniu</groupId>
  166. <artifactId>qiniu-java-sdk</artifactId>
  167. <version>${qiniu.version}</version>
  168. </dependency>
  169. <!-- 腾讯云COS -->
  170. <dependency>
  171. <groupId>com.qcloud</groupId>
  172. <artifactId>cos_api</artifactId>
  173. <version>${qcloud-version}</version>
  174. </dependency>
  175. <!-- 阿里云OSS -->
  176. <dependency>
  177. <groupId>com.aliyun.oss</groupId>
  178. <artifactId>aliyun-sdk-oss</artifactId>
  179. <version>${aliyun-oss.version}</version>
  180. </dependency>
  181. <!-- 腾讯云短信 -->
  182. <dependency>
  183. <groupId>com.tencentcloudapi</groupId>
  184. <artifactId>tencentcloud-sdk-java</artifactId>
  185. <version>${tencentcloudapi.version}</version>
  186. </dependency>
  187. <!-- 阿里云短信 -->
  188. <dependency>
  189. <groupId>com.aliyun</groupId>
  190. <artifactId>aliyun-java-sdk-core</artifactId>
  191. <version>${aliyun-java.version}</version>
  192. </dependency>
  193. <!-- EasyExcel-->
  194. <dependency>
  195. <groupId>com.alibaba</groupId>
  196. <artifactId>easyexcel</artifactId>
  197. <version>${easyexcel.version}</version>
  198. </dependency>
  199. <!-- 系统监控 -->
  200. <dependency>
  201. <groupId>com.github.oshi</groupId>
  202. <artifactId>oshi-core</artifactId>
  203. <version>${oshi-core.version}</version>
  204. </dependency>
  205. <!-- Swagger3 -->
  206. <dependency>
  207. <groupId>io.springfox</groupId>
  208. <artifactId>springfox-boot-starter</artifactId>
  209. <version>3.0.0</version>
  210. </dependency>
  211. <!-- 微信小程序 -->
  212. <dependency>
  213. <groupId>com.github.binarywang</groupId>
  214. <artifactId>weixin-java-miniapp</artifactId>
  215. <version>${weixin.version}</version>
  216. </dependency>
  217. <!-- 微信公众号 -->
  218. <dependency>
  219. <groupId>com.github.binarywang</groupId>
  220. <artifactId>weixin-java-mp</artifactId>
  221. <version>${weixin.version}</version>
  222. </dependency>
  223. <!-- 微信支付 -->
  224. <dependency>
  225. <groupId>com.github.binarywang</groupId>
  226. <artifactId>weixin-java-pay</artifactId>
  227. <version>${weixin.version}</version>
  228. </dependency>
  229. <!--knife4j-->
  230. <dependency>
  231. <groupId>com.github.xiaoymin</groupId>
  232. <artifactId>knife4j-spring-boot-starter</artifactId>
  233. <version>${knife4j}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.corundumstudio.socketio</groupId>
  237. <artifactId>netty-socketio</artifactId>
  238. <version>${socketio}</version>
  239. </dependency>
  240. <!-- 阿里数据库连接池 -->
  241. <dependency>
  242. <groupId>com.alibaba</groupId>
  243. <artifactId>druid-spring-boot-starter</artifactId>
  244. <version>${druid.version}</version>
  245. </dependency>
  246. <!-- opcua 通信协议包 -->
  247. <dependency>
  248. <groupId>org.eclipse.milo</groupId>
  249. <artifactId>sdk-client</artifactId>
  250. <version>${milo.version}</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.eclipse.milo</groupId>
  254. <artifactId>sdk-server</artifactId>
  255. <version>${milo.version}</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.eclipse.milo</groupId>
  259. <artifactId>stack-core</artifactId>
  260. <version>${milo.version}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.bouncycastle</groupId>
  264. <artifactId>bcpkix-jdk15on</artifactId>
  265. <version>1.61</version>
  266. </dependency>
  267. <!--utgard starting-->
  268. <dependency>
  269. <groupId>org.openscada.external</groupId>
  270. <artifactId>org.openscada.external.jcifs</artifactId>
  271. <version>1.2.25</version>
  272. <exclusions>
  273. <exclusion>
  274. <groupId>org.bouncycastle</groupId>
  275. <artifactId>bcprov-jdk15on</artifactId>
  276. </exclusion>
  277. </exclusions>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.openscada.jinterop</groupId>
  281. <artifactId>org.openscada.jinterop.core</artifactId>
  282. <version>2.1.8</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.openscada.jinterop</groupId>
  286. <artifactId>org.openscada.jinterop.deps</artifactId>
  287. <version>1.5.0</version>
  288. <exclusions>
  289. <exclusion>
  290. <groupId>org.bouncycastle</groupId>
  291. <artifactId>bcprov-jdk15on</artifactId>
  292. </exclusion>
  293. </exclusions>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.openscada.utgard</groupId>
  297. <artifactId>org.openscada.opc.dcom</artifactId>
  298. <version>1.5.0</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>org.openscada.utgard</groupId>
  302. <artifactId>org.openscada.opc.lib</artifactId>
  303. <version>1.5.0</version>
  304. </dependency>
  305. <!-- utgard end -->
  306. <!-- 全局工具 -->
  307. <dependency>
  308. <groupId>com.sckj</groupId>
  309. <artifactId>taphole-common</artifactId>
  310. <version>${taphole.version}</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>com.sckj</groupId>
  314. <artifactId>taphole-device</artifactId>
  315. <version>${taphole.version}</version>
  316. </dependency>
  317. <dependency>
  318. <groupId>com.sckj</groupId>
  319. <artifactId>taphole-warn</artifactId>
  320. <version>${taphole.version}</version>
  321. </dependency>
  322. <dependency>
  323. <groupId>com.sckj</groupId>
  324. <artifactId>taphole-iron</artifactId>
  325. <version>${taphole.version}</version>
  326. </dependency>
  327. <dependency>
  328. <groupId>com.sckj</groupId>
  329. <artifactId>taphole-opc</artifactId>
  330. <version>${taphole.version}</version>
  331. </dependency>
  332. <dependency>
  333. <groupId>com.sckj</groupId>
  334. <artifactId>taphole-l2</artifactId>
  335. <version>${taphole.version}</version>
  336. </dependency>
  337. <!-- <dependency>-->
  338. <!-- <groupId>cn.idev.excel</groupId>-->
  339. <!-- <artifactId>fastexcel</artifactId>-->
  340. <!-- <version>${fastexcel.version}</version>-->
  341. <!-- </dependency>-->
  342. </dependencies>
  343. </dependencyManagement>
  344. <!-- 插件管理 -->
  345. <build>
  346. <plugins>
  347. <plugin>
  348. <groupId>org.springframework.boot</groupId>
  349. <artifactId>spring-boot-maven-plugin</artifactId>
  350. <version>2.6.4</version>
  351. </plugin>
  352. <plugin>
  353. <groupId>org.apache.maven.plugins</groupId>
  354. <artifactId>maven-compiler-plugin</artifactId>
  355. <version>3.10.0</version>
  356. <configuration>
  357. <source>${java.version}</source>
  358. <target>${java.version}</target>
  359. <encoding>${project.build.sourceEncoding}</encoding>
  360. </configuration>
  361. </plugin>
  362. </plugins>
  363. </build>
  364. </project>