pom.xml 11 KB

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