pom.xml 10 KB

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