pom.xml 9.5 KB

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