pom.xml 15 KB

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