pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  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.leromro</groupId>
  7. <artifactId>leromro</artifactId>
  8. <version>3.8.9</version>
  9. <name>leromro</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>乐融融</description>
  12. <properties>
  13. <leromro.version>3.8.9</leromro.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.102</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. <mybatis-plus.version>3.4.0</mybatis-plus.version>
  36. </properties>
  37. <!-- 依赖声明 -->
  38. <dependencyManagement>
  39. <dependencies>
  40. <!-- 覆盖SpringFramework的依赖配置-->
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-framework-bom</artifactId>
  44. <version>${spring-framework.version}</version>
  45. <type>pom</type>
  46. <scope>import</scope>
  47. </dependency>
  48. <!-- 覆盖SpringSecurity的依赖配置-->
  49. <dependency>
  50. <groupId>org.springframework.security</groupId>
  51. <artifactId>spring-security-bom</artifactId>
  52. <version>${spring-security.version}</version>
  53. <type>pom</type>
  54. <scope>import</scope>
  55. </dependency>
  56. <!-- SpringBoot的依赖配置-->
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-dependencies</artifactId>
  60. <version>${spring-boot.version}</version>
  61. <type>pom</type>
  62. <scope>import</scope>
  63. </dependency>
  64. <!-- 覆盖logback的依赖配置-->
  65. <dependency>
  66. <groupId>ch.qos.logback</groupId>
  67. <artifactId>logback-core</artifactId>
  68. <version>${logback.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>ch.qos.logback</groupId>
  72. <artifactId>logback-classic</artifactId>
  73. <version>${logback.version}</version>
  74. </dependency>
  75. <!-- 覆盖tomcat的依赖配置-->
  76. <dependency>
  77. <groupId>org.apache.tomcat.embed</groupId>
  78. <artifactId>tomcat-embed-core</artifactId>
  79. <version>${tomcat.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.tomcat.embed</groupId>
  83. <artifactId>tomcat-embed-el</artifactId>
  84. <version>${tomcat.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.tomcat.embed</groupId>
  88. <artifactId>tomcat-embed-websocket</artifactId>
  89. <version>${tomcat.version}</version>
  90. </dependency>
  91. <!-- 阿里数据库连接池 -->
  92. <dependency>
  93. <groupId>com.alibaba</groupId>
  94. <artifactId>druid-spring-boot-starter</artifactId>
  95. <version>${druid.version}</version>
  96. </dependency>
  97. <!-- 解析客户端操作系统、浏览器等 -->
  98. <dependency>
  99. <groupId>eu.bitwalker</groupId>
  100. <artifactId>UserAgentUtils</artifactId>
  101. <version>${bitwalker.version}</version>
  102. </dependency>
  103. <!-- pagehelper 分页插件 -->
  104. <dependency>
  105. <groupId>com.github.pagehelper</groupId>
  106. <artifactId>pagehelper-spring-boot-starter</artifactId>
  107. <version>${pagehelper.boot.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.baomidou</groupId>
  111. <artifactId>mybatis-plus-boot-starter</artifactId>
  112. <version>${mybatis-plus.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. <!-- knife4j-->
  133. <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-boot-starter -->
  134. <dependency>
  135. <groupId>com.github.xiaoymin</groupId>
  136. <artifactId>knife4j-spring-boot-starter</artifactId>
  137. <version>3.0.3</version>
  138. </dependency>
  139. <!-- io常用工具类 -->
  140. <dependency>
  141. <groupId>commons-io</groupId>
  142. <artifactId>commons-io</artifactId>
  143. <version>${commons.io.version}</version>
  144. </dependency>
  145. <!-- excel工具 -->
  146. <dependency>
  147. <groupId>org.apache.poi</groupId>
  148. <artifactId>poi-ooxml</artifactId>
  149. <version>${poi.version}</version>
  150. </dependency>
  151. <!-- velocity代码生成使用模板 -->
  152. <dependency>
  153. <groupId>org.apache.velocity</groupId>
  154. <artifactId>velocity-engine-core</artifactId>
  155. <version>${velocity.version}</version>
  156. </dependency>
  157. <!-- 阿里JSON解析器 -->
  158. <dependency>
  159. <groupId>com.alibaba.fastjson2</groupId>
  160. <artifactId>fastjson2</artifactId>
  161. <version>${fastjson.version}</version>
  162. </dependency>
  163. <!-- Token生成与解析-->
  164. <dependency>
  165. <groupId>io.jsonwebtoken</groupId>
  166. <artifactId>jjwt</artifactId>
  167. <version>${jwt.version}</version>
  168. </dependency>
  169. <!-- 验证码 -->
  170. <dependency>
  171. <groupId>pro.fessional</groupId>
  172. <artifactId>kaptcha</artifactId>
  173. <version>${kaptcha.version}</version>
  174. </dependency>
  175. <!-- 定时任务-->
  176. <dependency>
  177. <groupId>com.leromro</groupId>
  178. <artifactId>leromro-quartz</artifactId>
  179. <version>${leromro.version}</version>
  180. </dependency>
  181. <!-- 代码生成-->
  182. <dependency>
  183. <groupId>com.leromro</groupId>
  184. <artifactId>leromro-generator</artifactId>
  185. <version>${leromro.version}</version>
  186. </dependency>
  187. <!-- 核心模块-->
  188. <dependency>
  189. <groupId>com.leromro</groupId>
  190. <artifactId>leromro-framework</artifactId>
  191. <version>${leromro.version}</version>
  192. </dependency>
  193. <!-- 系统模块-->
  194. <dependency>
  195. <groupId>com.leromro</groupId>
  196. <artifactId>leromro-system</artifactId>
  197. <version>${leromro.version}</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>com.leromro</groupId>
  201. <artifactId>leromro-core</artifactId>
  202. <version>${leromro.version}</version>
  203. </dependency>
  204. <!-- 通用工具-->
  205. <dependency>
  206. <groupId>com.leromro</groupId>
  207. <artifactId>leromro-common</artifactId>
  208. <version>${leromro.version}</version>
  209. </dependency>
  210. <!-- 谷歌工具包-->
  211. <dependency>
  212. <groupId>com.google.guava</groupId>
  213. <artifactId>guava</artifactId>
  214. <version>30.1.1-jre</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>cn.hutool</groupId>
  218. <artifactId>hutool-all</artifactId>
  219. <version>5.8.36</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.dromara.x-file-storage</groupId>
  223. <artifactId>x-file-storage-spring</artifactId>
  224. <version>2.2.1</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>io.minio</groupId>
  228. <artifactId>minio</artifactId>
  229. <version>8.5.2</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>com.squareup.okhttp3</groupId>
  233. <artifactId>okhttp</artifactId>
  234. <version>4.8.1</version>
  235. </dependency>
  236. <!--订单号生成工具-->
  237. <dependency>
  238. <groupId>org.apache.commons</groupId>
  239. <artifactId>commons-lang3</artifactId>
  240. <version>3.17.0</version>
  241. </dependency>
  242. <!-- 短信服务 -->
  243. <dependency>
  244. <groupId>com.aliyun</groupId>
  245. <artifactId>dysmsapi20170525</artifactId>
  246. <version>2.0.10</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.aliyun</groupId>
  250. <artifactId>tea-openapi</artifactId>
  251. <version>0.2.2</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>com.aliyun.oss</groupId>
  255. <artifactId>aliyun-sdk-oss</artifactId>
  256. <version>3.16.1</version>
  257. </dependency>
  258. <!-- 微信支付工具-->
  259. <dependency>
  260. <groupId>com.github.binarywang</groupId>
  261. <artifactId>weixin-java-pay</artifactId>
  262. <version>4.7.0</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.redisson</groupId>
  266. <artifactId>redisson-spring-boot-starter</artifactId>
  267. <version>3.16.3</version>
  268. </dependency>
  269. <!-- 支付宝支付 -->
  270. <dependency>
  271. <groupId>com.alipay.sdk</groupId>
  272. <artifactId>alipay-sdk-java</artifactId>
  273. <version>4.35.37.ALL</version>
  274. </dependency>
  275. </dependencies>
  276. </dependencyManagement>
  277. <modules>
  278. <module>leromro-admin</module>
  279. <module>leromro-framework</module>
  280. <module>leromro-system</module>
  281. <module>leromro-quartz</module>
  282. <module>leromro-generator</module>
  283. <module>leromro-common</module>
  284. <module>leromro-core</module>
  285. </modules>
  286. <packaging>pom</packaging>
  287. <build>
  288. <plugins>
  289. <plugin>
  290. <groupId>org.apache.maven.plugins</groupId>
  291. <artifactId>maven-compiler-plugin</artifactId>
  292. <version>3.1</version>
  293. <configuration>
  294. <source>${java.version}</source>
  295. <target>${java.version}</target>
  296. <encoding>${project.build.sourceEncoding}</encoding>
  297. </configuration>
  298. </plugin>
  299. </plugins>
  300. </build>
  301. <repositories>
  302. <repository>
  303. <id>public</id>
  304. <name>aliyun nexus</name>
  305. <url>https://maven.aliyun.com/repository/public</url>
  306. <releases>
  307. <enabled>true</enabled>
  308. </releases>
  309. </repository>
  310. </repositories>
  311. <pluginRepositories>
  312. <pluginRepository>
  313. <id>public</id>
  314. <name>aliyun nexus</name>
  315. <url>https://maven.aliyun.com/repository/public</url>
  316. <releases>
  317. <enabled>true</enabled>
  318. </releases>
  319. <snapshots>
  320. <enabled>false</enabled>
  321. </snapshots>
  322. </pluginRepository>
  323. </pluginRepositories>
  324. </project>