pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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. </modules>
  17. <description>
  18. 智慧园区管控
  19. </description>
  20. <properties>
  21. <ruoyi.version>3.8.8</ruoyi.version>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <java.version>1.8</java.version>
  25. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  26. <spring-framework.version>5.3.33</spring-framework.version>
  27. <spring-security.version>5.7.12</spring-security.version>
  28. <druid.version>1.2.23</druid.version>
  29. <bitwalker.version>1.21</bitwalker.version>
  30. <swagger.version>3.0.0</swagger.version>
  31. <kaptcha.version>2.3.3</kaptcha.version>
  32. <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
  33. <fastjson.version>2.0.43</fastjson.version>
  34. <oshi.version>6.6.1</oshi.version>
  35. <commons.io.version>2.13.0</commons.io.version>
  36. <poi.version>4.1.2</poi.version>
  37. <velocity.version>2.3</velocity.version>
  38. <jwt.version>0.9.1</jwt.version>
  39. <forest.version>1.5.9</forest.version>
  40. <cffu.version>1.0.0-Alpha19</cffu.version>
  41. <jts.version>1.18.2</jts.version>
  42. <mqttstarter.version>2.3.7</mqttstarter.version>
  43. <math.version>3.6.1</math.version>
  44. <park.version>1.0-SNAPSHOT</park.version>
  45. <java.ws.version>1.5.2</java.ws.version>
  46. <hutool.version>5.8.26</hutool.version>
  47. <prod-commons.version>1.0-SNAPSHOT</prod-commons.version>
  48. </properties>
  49. <!-- 依赖声明 -->
  50. <dependencyManagement>
  51. <dependencies>
  52. <!-- SpringFramework的依赖配置-->
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-framework-bom</artifactId>
  56. <version>${spring-framework.version}</version>
  57. <type>pom</type>
  58. <scope>import</scope>
  59. </dependency>
  60. <!-- SpringSecurity的依赖配置-->
  61. <dependency>
  62. <groupId>org.springframework.security</groupId>
  63. <artifactId>spring-security-bom</artifactId>
  64. <version>${spring-security.version}</version>
  65. <type>pom</type>
  66. <scope>import</scope>
  67. </dependency>
  68. <!-- SpringBoot的依赖配置-->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-dependencies</artifactId>
  72. <version>2.5.15</version>
  73. <type>pom</type>
  74. <scope>import</scope>
  75. </dependency>
  76. <!-- 阿里数据库连接池 -->
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>druid-spring-boot-starter</artifactId>
  80. <version>${druid.version}</version>
  81. </dependency>
  82. <!-- 解析客户端操作系统、浏览器等 -->
  83. <dependency>
  84. <groupId>eu.bitwalker</groupId>
  85. <artifactId>UserAgentUtils</artifactId>
  86. <version>${bitwalker.version}</version>
  87. </dependency>
  88. <!-- pagehelper 分页插件 -->
  89. <dependency>
  90. <groupId>com.github.pagehelper</groupId>
  91. <artifactId>pagehelper-spring-boot-starter</artifactId>
  92. <version>${pagehelper.boot.version}</version>
  93. </dependency>
  94. <!-- 获取系统信息 -->
  95. <dependency>
  96. <groupId>com.github.oshi</groupId>
  97. <artifactId>oshi-core</artifactId>
  98. <version>${oshi.version}</version>
  99. </dependency>
  100. <!-- Swagger3依赖 -->
  101. <dependency>
  102. <groupId>io.springfox</groupId>
  103. <artifactId>springfox-boot-starter</artifactId>
  104. <version>${swagger.version}</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>io.swagger</groupId>
  108. <artifactId>swagger-models</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. <!-- io常用工具类 -->
  113. <dependency>
  114. <groupId>commons-io</groupId>
  115. <artifactId>commons-io</artifactId>
  116. <version>${commons.io.version}</version>
  117. </dependency>
  118. <!-- excel工具 -->
  119. <dependency>
  120. <groupId>org.apache.poi</groupId>
  121. <artifactId>poi-ooxml</artifactId>
  122. <version>${poi.version}</version>
  123. </dependency>
  124. <!-- velocity代码生成使用模板 -->
  125. <dependency>
  126. <groupId>org.apache.velocity</groupId>
  127. <artifactId>velocity-engine-core</artifactId>
  128. <version>${velocity.version}</version>
  129. </dependency>
  130. <!-- 阿里JSON解析器 -->
  131. <dependency>
  132. <groupId>com.alibaba.fastjson2</groupId>
  133. <artifactId>fastjson2</artifactId>
  134. <version>${fastjson.version}</version>
  135. </dependency>
  136. <!-- Token生成与解析-->
  137. <dependency>
  138. <groupId>io.jsonwebtoken</groupId>
  139. <artifactId>jjwt</artifactId>
  140. <version>${jwt.version}</version>
  141. </dependency>
  142. <!-- 验证码 -->
  143. <dependency>
  144. <groupId>pro.fessional</groupId>
  145. <artifactId>kaptcha</artifactId>
  146. <version>${kaptcha.version}</version>
  147. </dependency>
  148. <!-- 定时任务-->
  149. <dependency>
  150. <groupId>com.huashe.application</groupId>
  151. <artifactId>ruoyi-quartz</artifactId>
  152. <version>${ruoyi.version}</version>
  153. </dependency>
  154. <!-- 代码生成-->
  155. <dependency>
  156. <groupId>com.huashe.application</groupId>
  157. <artifactId>ruoyi-generator</artifactId>
  158. <version>${ruoyi.version}</version>
  159. </dependency>
  160. <!-- 核心模块-->
  161. <dependency>
  162. <groupId>com.huashe.application</groupId>
  163. <artifactId>ruoyi-framework</artifactId>
  164. <version>${ruoyi.version}</version>
  165. </dependency>
  166. <!-- 系统模块-->
  167. <dependency>
  168. <groupId>com.huashe.application</groupId>
  169. <artifactId>ruoyi-system</artifactId>
  170. <version>${ruoyi.version}</version>
  171. </dependency>
  172. <!-- 通用工具-->
  173. <dependency>
  174. <groupId>com.huashe.application</groupId>
  175. <artifactId>ruoyi-common</artifactId>
  176. <version>${ruoyi.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.dtflys.forest</groupId>
  180. <artifactId>forest-spring-boot-starter</artifactId>
  181. <version>${forest.version}</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>io.foldright</groupId>
  185. <artifactId>cffu</artifactId>
  186. <version>${cffu.version}</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.locationtech.jts</groupId>
  190. <artifactId>jts-core</artifactId>
  191. <version>${jts.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>net.dreamlu</groupId>
  195. <artifactId>mica-mqtt-client-spring-boot-starter</artifactId>
  196. <version>${mqttstarter.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.apache.commons</groupId>
  200. <artifactId>commons-math3</artifactId>
  201. <version>${math.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.huashe.park</groupId>
  205. <artifactId>park-domain</artifactId>
  206. <version>${park.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>cn.hutool</groupId>
  210. <artifactId>hutool-bom</artifactId>
  211. <version>${hutool.version}</version>
  212. <type>pom</type>
  213. <!-- 注意这里是import -->
  214. <scope>import</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.java-websocket</groupId>
  218. <artifactId>Java-WebSocket</artifactId>
  219. <version>${java.ws.version}</version>
  220. </dependency>
  221. </dependencies>
  222. </dependencyManagement>
  223. <repositories>
  224. <repository>
  225. <id>nexus</id>
  226. <name>Team Nexus Repository</name>
  227. <url>http://maven.xt.wenhq.top:8083/repository/maven-public/</url>
  228. <snapshots>
  229. <enabled>true</enabled>
  230. <updatePolicy>always</updatePolicy>
  231. <checksumPolicy>warn</checksumPolicy>
  232. </snapshots>
  233. <releases>
  234. <enabled>true</enabled>
  235. <updatePolicy>always</updatePolicy>
  236. <checksumPolicy>warn</checksumPolicy>
  237. </releases>
  238. </repository>
  239. </repositories>
  240. <distributionManagement>
  241. <repository>
  242. <id>hs-private-repo</id>
  243. <url>http://maven.xt.wenhq.top:8083/repository/maven-releases/</url>
  244. </repository>
  245. <snapshotRepository>
  246. <id>hs-private-snapshot-repo</id>
  247. <url>http://maven.xt.wenhq.top:8083/repository/maven-snapshots/</url>
  248. </snapshotRepository>
  249. </distributionManagement>
  250. <pluginRepositories>
  251. <pluginRepository>
  252. <id>nexus</id>
  253. <name>Team Nexus Repository</name>
  254. <url>http://maven.xt.wenhq.top:8083/repository/maven-public/</url>
  255. </pluginRepository>
  256. </pluginRepositories>
  257. </project>