pom.xml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.huashe.park</groupId>
  7. <artifactId>bd-park</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>park-application</module>
  12. <module>park-core</module>
  13. <module>park-common</module>
  14. <module>park-infrastructure</module>
  15. <module>park-domain</module>
  16. <module>park-cloud</module>
  17. <module>park-collect</module>
  18. </modules>
  19. <description>
  20. 智慧园区管控
  21. </description>
  22. <properties>
  23. <ruoyi.version>3.8.8</ruoyi.version>
  24. <ruoyi.cloud.version>3.6.4</ruoyi.cloud.version>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  27. <java.version>1.8</java.version>
  28. <spring-boot.version>2.7.18</spring-boot.version>
  29. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  30. <spring-framework.version>5.3.33</spring-framework.version>
  31. <spring-security.version>5.7.12</spring-security.version>
  32. <druid.version>1.2.23</druid.version>
  33. <bitwalker.version>1.21</bitwalker.version>
  34. <swagger.version>3.0.0</swagger.version>
  35. <kaptcha.version>2.3.3</kaptcha.version>
  36. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  37. <fastjson.version>2.0.53</fastjson.version>
  38. <oshi.version>6.6.1</oshi.version>
  39. <commons.io.version>2.13.0</commons.io.version>
  40. <poi.version>4.1.2</poi.version>
  41. <velocity.version>2.3</velocity.version>
  42. <jwt.version>0.9.1</jwt.version>
  43. <forest.version>1.6.3</forest.version>
  44. <cffu.version>1.0.0-Alpha19</cffu.version>
  45. <jts.version>1.18.2</jts.version>
  46. <mqttstarter.version>2.3.7</mqttstarter.version>
  47. <spring-cloud-alibaba.version>2021.0.5.0</spring-cloud-alibaba.version>
  48. <math.version>3.6.1</math.version>
  49. <park.version>1.0-SNAPSHOT</park.version>
  50. <java.ws.version>1.5.2</java.ws.version>
  51. <hutool.version>5.8.26</hutool.version>
  52. <swagger.fox.version>3.0.0</swagger.fox.version>
  53. <prod-commons.version>1.0-SNAPSHOT</prod-commons.version>
  54. <transmittable-thread-local.version>2.14.4</transmittable-thread-local.version>
  55. <fastexcel.version>1.1.0</fastexcel.version>
  56. <paho.version>1.2.5</paho.version>
  57. <common.collect>4.4</common.collect>
  58. <geotools.version>20.0</geotools.version>
  59. <jsqlparser.version>4.6</jsqlparser.version>
  60. <warm-flow>1.6.7</warm-flow>
  61. </properties>
  62. <!-- 依赖声明 -->
  63. <dependencyManagement>
  64. <dependencies>
  65. <!-- SpringFramework的依赖配置-->
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-framework-bom</artifactId>
  69. <version>${spring-framework.version}</version>
  70. <type>pom</type>
  71. <scope>import</scope>
  72. </dependency>
  73. <!-- SpringSecurity的依赖配置-->
  74. <dependency>
  75. <groupId>org.springframework.security</groupId>
  76. <artifactId>spring-security-bom</artifactId>
  77. <version>${spring-security.version}</version>
  78. <type>pom</type>
  79. <scope>import</scope>
  80. </dependency>
  81. <!-- SpringBoot的依赖配置-->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-dependencies</artifactId>
  85. <version>${spring-boot.version}</version>
  86. <type>pom</type>
  87. <scope>import</scope>
  88. </dependency>
  89. <!-- SpringCloud Alibaba 微服务 -->
  90. <dependency>
  91. <groupId>com.alibaba.cloud</groupId>
  92. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  93. <version>${spring-cloud-alibaba.version}</version>
  94. <type>pom</type>
  95. <scope>import</scope>
  96. </dependency>
  97. <!-- 阿里数据库连接池 -->
  98. <dependency>
  99. <groupId>com.alibaba</groupId>
  100. <artifactId>druid-spring-boot-starter</artifactId>
  101. <version>${druid.version}</version>
  102. </dependency>
  103. <!-- 解析客户端操作系统、浏览器等 -->
  104. <dependency>
  105. <groupId>eu.bitwalker</groupId>
  106. <artifactId>UserAgentUtils</artifactId>
  107. <version>${bitwalker.version}</version>
  108. </dependency>
  109. <!-- pagehelper 分页插件 -->
  110. <dependency>
  111. <groupId>com.github.pagehelper</groupId>
  112. <artifactId>pagehelper-spring-boot-starter</artifactId>
  113. <version>${pagehelper.boot.version}</version>
  114. </dependency>
  115. <!-- 获取系统信息 -->
  116. <dependency>
  117. <groupId>com.github.oshi</groupId>
  118. <artifactId>oshi-core</artifactId>
  119. <version>${oshi.version}</version>
  120. </dependency>
  121. <!-- Swagger3依赖 -->
  122. <dependency>
  123. <groupId>io.springfox</groupId>
  124. <artifactId>springfox-boot-starter</artifactId>
  125. <version>${swagger.version}</version>
  126. <exclusions>
  127. <exclusion>
  128. <groupId>io.swagger</groupId>
  129. <artifactId>swagger-models</artifactId>
  130. </exclusion>
  131. </exclusions>
  132. </dependency>
  133. <!-- io常用工具类 -->
  134. <dependency>
  135. <groupId>commons-io</groupId>
  136. <artifactId>commons-io</artifactId>
  137. <version>${commons.io.version}</version>
  138. </dependency>
  139. <!-- excel工具 -->
  140. <dependency>
  141. <groupId>org.apache.poi</groupId>
  142. <artifactId>poi-ooxml</artifactId>
  143. <version>${poi.version}</version>
  144. </dependency>
  145. <!-- velocity代码生成使用模板 -->
  146. <dependency>
  147. <groupId>org.apache.velocity</groupId>
  148. <artifactId>velocity-engine-core</artifactId>
  149. <version>${velocity.version}</version>
  150. </dependency>
  151. <!-- 阿里JSON解析器 -->
  152. <dependency>
  153. <groupId>com.alibaba.fastjson2</groupId>
  154. <artifactId>fastjson2</artifactId>
  155. <version>${fastjson.version}</version>
  156. </dependency>
  157. <!-- Token生成与解析-->
  158. <dependency>
  159. <groupId>io.jsonwebtoken</groupId>
  160. <artifactId>jjwt</artifactId>
  161. <version>${jwt.version}</version>
  162. </dependency>
  163. <!-- 验证码 -->
  164. <dependency>
  165. <groupId>pro.fessional</groupId>
  166. <artifactId>kaptcha</artifactId>
  167. <version>${kaptcha.version}</version>
  168. </dependency>
  169. <!-- 定时任务-->
  170. <dependency>
  171. <groupId>com.huashe.application</groupId>
  172. <artifactId>ruoyi-quartz</artifactId>
  173. <version>${ruoyi.version}</version>
  174. </dependency>
  175. <!-- 线程传递值 -->
  176. <dependency>
  177. <groupId>com.alibaba</groupId>
  178. <artifactId>transmittable-thread-local</artifactId>
  179. <version>${transmittable-thread-local.version}</version>
  180. </dependency>
  181. <!-- 代码生成-->
  182. <dependency>
  183. <groupId>com.huashe.application</groupId>
  184. <artifactId>ruoyi-generator</artifactId>
  185. <version>${ruoyi.version}</version>
  186. </dependency>
  187. <!-- 核心模块-->
  188. <dependency>
  189. <groupId>com.huashe.application</groupId>
  190. <artifactId>ruoyi-framework</artifactId>
  191. <version>${ruoyi.version}</version>
  192. </dependency>
  193. <!-- 系统模块-->
  194. <dependency>
  195. <groupId>com.huashe.application</groupId>
  196. <artifactId>ruoyi-system</artifactId>
  197. <version>${ruoyi.version}</version>
  198. </dependency>
  199. <!-- 通用工具-->
  200. <dependency>
  201. <groupId>com.huashe.application</groupId>
  202. <artifactId>ruoyi-common</artifactId>
  203. <version>${ruoyi.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.huashe.application</groupId>
  207. <artifactId>ruoyi-flow</artifactId>
  208. <version>${ruoyi.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.dtflys.forest</groupId>
  212. <artifactId>forest-spring-boot-starter</artifactId>
  213. <version>${forest.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>io.foldright</groupId>
  217. <artifactId>cffu</artifactId>
  218. <version>${cffu.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.locationtech.jts</groupId>
  222. <artifactId>jts-core</artifactId>
  223. <version>${jts.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>net.dreamlu</groupId>
  227. <artifactId>mica-mqtt-client-spring-boot-starter</artifactId>
  228. <version>${mqttstarter.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.apache.commons</groupId>
  232. <artifactId>commons-math3</artifactId>
  233. <version>${math.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.huashe.park</groupId>
  237. <artifactId>park-domain</artifactId>
  238. <version>${park.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.huashe.park</groupId>
  242. <artifactId>park-common</artifactId>
  243. <version>${park.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.huashe.park</groupId>
  247. <artifactId>park-core</artifactId>
  248. <version>${park.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>cn.hutool</groupId>
  252. <artifactId>hutool-bom</artifactId>
  253. <version>${hutool.version}</version>
  254. <type>pom</type>
  255. <!-- 注意这里是import -->
  256. <scope>import</scope>
  257. </dependency>
  258. <dependency>
  259. <groupId>com.huashe.common</groupId>
  260. <artifactId>prod-commons</artifactId>
  261. <version>${prod-commons.version}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.java-websocket</groupId>
  265. <artifactId>Java-WebSocket</artifactId>
  266. <version>${java.ws.version}</version>
  267. </dependency>
  268. <!-- cloud-->
  269. <!-- 核心模块 -->
  270. <dependency>
  271. <groupId>com.huashe.cloud</groupId>
  272. <artifactId>ruoyi-common-core</artifactId>
  273. <version>${ruoyi.cloud.version}</version>
  274. </dependency>
  275. <!-- 接口模块 -->
  276. <dependency>
  277. <groupId>com.huashe.cloud</groupId>
  278. <artifactId>ruoyi-common-swagger</artifactId>
  279. <version>${ruoyi.cloud.version}</version>
  280. </dependency>
  281. <!-- 安全模块 -->
  282. <dependency>
  283. <groupId>com.huashe.cloud</groupId>
  284. <artifactId>ruoyi-common-security</artifactId>
  285. <version>${ruoyi.cloud.version}</version>
  286. </dependency>
  287. <!-- 数据脱敏 -->
  288. <dependency>
  289. <groupId>com.huashe.cloud</groupId>
  290. <artifactId>ruoyi-common-sensitive</artifactId>
  291. <version>${ruoyi.cloud.version}</version>
  292. </dependency>
  293. <!-- 权限范围 -->
  294. <dependency>
  295. <groupId>com.huashe.cloud</groupId>
  296. <artifactId>ruoyi-common-datascope</artifactId>
  297. <version>${ruoyi.cloud.version}</version>
  298. </dependency>
  299. <!-- 多数据源 -->
  300. <dependency>
  301. <groupId>com.huashe.cloud</groupId>
  302. <artifactId>ruoyi-common-datasource</artifactId>
  303. <version>${ruoyi.cloud.version}</version>
  304. </dependency>
  305. <!-- 分布式事务 -->
  306. <dependency>
  307. <groupId>com.huashe.cloud</groupId>
  308. <artifactId>ruoyi-common-seata</artifactId>
  309. <version>${ruoyi.cloud.version}</version>
  310. </dependency>
  311. <!-- 日志记录 -->
  312. <dependency>
  313. <groupId>com.huashe.cloud</groupId>
  314. <artifactId>ruoyi-common-log</artifactId>
  315. <version>${ruoyi.cloud.version}</version>
  316. </dependency>
  317. <!-- 缓存服务 -->
  318. <dependency>
  319. <groupId>com.huashe.cloud</groupId>
  320. <artifactId>ruoyi-common-redis</artifactId>
  321. <version>${ruoyi.cloud.version}</version>
  322. </dependency>
  323. <!-- 系统接口 -->
  324. <dependency>
  325. <groupId>com.huashe.cloud</groupId>
  326. <artifactId>ruoyi-api-system</artifactId>
  327. <version>${ruoyi.cloud.version}</version>
  328. </dependency>
  329. <!-- 分布式事务 -->
  330. <dependency>
  331. <groupId>com.huashe.cloud</groupId>
  332. <artifactId>ruoyi-common-quartz</artifactId>
  333. <version>${ruoyi.cloud.version}</version>
  334. </dependency>
  335. <!-- https://mvnrepository.com/artifact/cn.idev.excel/fastexcel -->
  336. <dependency>
  337. <groupId>cn.idev.excel</groupId>
  338. <artifactId>fastexcel</artifactId>
  339. <version>${fastexcel.version}</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.eclipse.paho</groupId>
  343. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  344. <version>${paho.version}</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>org.apache.commons</groupId>
  348. <artifactId>commons-collections4</artifactId>
  349. <version>${common.collect}</version>
  350. </dependency>
  351. <dependency>
  352. <groupId>com.github.jsqlparser</groupId>
  353. <artifactId>jsqlparser</artifactId>
  354. <version>${jsqlparser.version}</version>
  355. </dependency>
  356. <dependency>
  357. <groupId>org.geotools</groupId>
  358. <artifactId>gt-api</artifactId>
  359. <version>${geotools.version}</version>
  360. <exclusions>
  361. <exclusion>
  362. <groupId>javax.media</groupId>
  363. <artifactId>jai_core</artifactId>
  364. </exclusion>
  365. <exclusion>
  366. <groupId>jgridshift</groupId>
  367. <artifactId>jgridshift</artifactId>
  368. </exclusion>
  369. <exclusion>
  370. <groupId>commons-pool</groupId>
  371. <artifactId>commons-pool</artifactId>
  372. </exclusion>
  373. <exclusion>
  374. <groupId>net.sf.geographiclib</groupId>
  375. <artifactId>GeographicLib-Java</artifactId>
  376. </exclusion>
  377. </exclusions>
  378. </dependency>
  379. <dependency>
  380. <groupId>org.geotools</groupId>
  381. <artifactId>gt-epsg-hsql</artifactId>
  382. <version>${geotools.version}</version>
  383. </dependency>
  384. <dependency>
  385. <groupId>org.dromara.warm</groupId>
  386. <artifactId>warm-flow-mybatis-sb-starter</artifactId>
  387. <version>${warm-flow}</version>
  388. </dependency>
  389. <dependency>
  390. <groupId>org.dromara.warm</groupId>
  391. <artifactId>warm-flow-plugin-ui-sb-web</artifactId>
  392. <version>${warm-flow}</version>
  393. </dependency>
  394. </dependencies>
  395. </dependencyManagement>
  396. <repositories>
  397. <repository>
  398. <id>nexus</id>
  399. <name>Team Nexus Repository</name>
  400. <url>http://maven.xt.wenhq.top:8083/repository/maven-public/</url>
  401. <snapshots>
  402. <enabled>true</enabled>
  403. <updatePolicy>always</updatePolicy>
  404. <checksumPolicy>warn</checksumPolicy>
  405. </snapshots>
  406. <releases>
  407. <enabled>true</enabled>
  408. <updatePolicy>always</updatePolicy>
  409. <checksumPolicy>warn</checksumPolicy>
  410. </releases>
  411. </repository>
  412. </repositories>
  413. <distributionManagement>
  414. <repository>
  415. <id>hs-private-repo</id>
  416. <url>http://maven.xt.wenhq.top:8083/repository/maven-releases/</url>
  417. </repository>
  418. <snapshotRepository>
  419. <id>hs-private-snapshot-repo</id>
  420. <url>http://maven.xt.wenhq.top:8083/repository/maven-snapshots/</url>
  421. </snapshotRepository>
  422. </distributionManagement>
  423. <pluginRepositories>
  424. <pluginRepository>
  425. <id>nexus</id>
  426. <name>Team Nexus Repository</name>
  427. <url>http://maven.xt.wenhq.top:8083/repository/maven-public/</url>
  428. </pluginRepository>
  429. </pluginRepositories>
  430. </project>