pom.xml 17 KB

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