pom.xml 11 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.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. </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.4.0</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. <!-- Swagger3依赖 -->
  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. <!-- io常用工具类 -->
  132. <dependency>
  133. <groupId>commons-io</groupId>
  134. <artifactId>commons-io</artifactId>
  135. <version>${commons.io.version}</version>
  136. </dependency>
  137. <!-- excel工具 -->
  138. <dependency>
  139. <groupId>org.apache.poi</groupId>
  140. <artifactId>poi-ooxml</artifactId>
  141. <version>${poi.version}</version>
  142. </dependency>
  143. <!-- velocity代码生成使用模板 -->
  144. <dependency>
  145. <groupId>org.apache.velocity</groupId>
  146. <artifactId>velocity-engine-core</artifactId>
  147. <version>${velocity.version}</version>
  148. </dependency>
  149. <!-- 阿里JSON解析器 -->
  150. <dependency>
  151. <groupId>com.alibaba.fastjson2</groupId>
  152. <artifactId>fastjson2</artifactId>
  153. <version>${fastjson.version}</version>
  154. </dependency>
  155. <!-- Token生成与解析-->
  156. <dependency>
  157. <groupId>io.jsonwebtoken</groupId>
  158. <artifactId>jjwt</artifactId>
  159. <version>${jwt.version}</version>
  160. </dependency>
  161. <!-- 验证码 -->
  162. <dependency>
  163. <groupId>pro.fessional</groupId>
  164. <artifactId>kaptcha</artifactId>
  165. <version>${kaptcha.version}</version>
  166. </dependency>
  167. <!-- 定时任务-->
  168. <dependency>
  169. <groupId>com.leromro</groupId>
  170. <artifactId>leromro-quartz</artifactId>
  171. <version>${leromro.version}</version>
  172. </dependency>
  173. <!-- 代码生成-->
  174. <dependency>
  175. <groupId>com.leromro</groupId>
  176. <artifactId>leromro-generator</artifactId>
  177. <version>${leromro.version}</version>
  178. </dependency>
  179. <!-- 核心模块-->
  180. <dependency>
  181. <groupId>com.leromro</groupId>
  182. <artifactId>leromro-framework</artifactId>
  183. <version>${leromro.version}</version>
  184. </dependency>
  185. <!-- 系统模块-->
  186. <dependency>
  187. <groupId>com.leromro</groupId>
  188. <artifactId>leromro-system</artifactId>
  189. <version>${leromro.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.leromro</groupId>
  193. <artifactId>leromro-core</artifactId>
  194. <version>${leromro.version}</version>
  195. </dependency>
  196. <!-- 通用工具-->
  197. <dependency>
  198. <groupId>com.leromro</groupId>
  199. <artifactId>leromro-common</artifactId>
  200. <version>${leromro.version}</version>
  201. </dependency>
  202. <!-- 谷歌工具包-->
  203. <dependency>
  204. <groupId>com.google.guava</groupId>
  205. <artifactId>guava</artifactId>
  206. <version>30.1.1-jre</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>cn.hutool</groupId>
  210. <artifactId>hutool-all</artifactId>
  211. <version>5.8.36</version>
  212. </dependency>
  213. </dependencies>
  214. </dependencyManagement>
  215. <modules>
  216. <module>leromro-admin</module>
  217. <module>leromro-framework</module>
  218. <module>leromro-system</module>
  219. <module>leromro-quartz</module>
  220. <module>leromro-generator</module>
  221. <module>leromro-common</module>
  222. <module>leromro-core</module>
  223. </modules>
  224. <packaging>pom</packaging>
  225. <build>
  226. <plugins>
  227. <plugin>
  228. <groupId>org.apache.maven.plugins</groupId>
  229. <artifactId>maven-compiler-plugin</artifactId>
  230. <version>3.1</version>
  231. <configuration>
  232. <source>${java.version}</source>
  233. <target>${java.version}</target>
  234. <encoding>${project.build.sourceEncoding}</encoding>
  235. </configuration>
  236. </plugin>
  237. </plugins>
  238. </build>
  239. <repositories>
  240. <repository>
  241. <id>public</id>
  242. <name>aliyun nexus</name>
  243. <url>https://maven.aliyun.com/repository/public</url>
  244. <releases>
  245. <enabled>true</enabled>
  246. </releases>
  247. </repository>
  248. </repositories>
  249. <pluginRepositories>
  250. <pluginRepository>
  251. <id>public</id>
  252. <name>aliyun nexus</name>
  253. <url>https://maven.aliyun.com/repository/public</url>
  254. <releases>
  255. <enabled>true</enabled>
  256. </releases>
  257. <snapshots>
  258. <enabled>false</enabled>
  259. </snapshots>
  260. </pluginRepository>
  261. </pluginRepositories>
  262. </project>