pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.ruoyi</groupId>
  6. <artifactId>ruoyi</artifactId>
  7. <version>4.7.1</version>
  8. <name>ruoyi</name>
  9. <url>http://www.ruoyi.vip</url>
  10. <description>若依管理系统</description>
  11. <properties>
  12. <ruoyi.version>4.7.1</ruoyi.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <java.version>1.8</java.version>
  16. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  17. <shiro.version>1.8.0</shiro.version>
  18. <thymeleaf.version>3.0.14.RELEASE</thymeleaf.version>
  19. <thymeleaf.extras.shiro.version>2.1.0</thymeleaf.extras.shiro.version>
  20. <druid.version>1.2.8</druid.version>
  21. <bitwalker.version>1.21</bitwalker.version>
  22. <kaptcha.version>2.3.2</kaptcha.version>
  23. <swagger.version>3.0.0</swagger.version>
  24. <mybatis-spring-boot.version>2.2.0</mybatis-spring-boot.version>
  25. <pagehelper.boot.version>1.4.0</pagehelper.boot.version>
  26. <fastjson.version>1.2.79</fastjson.version>
  27. <oshi.version>5.8.2</oshi.version>
  28. <jna.version>5.9.0</jna.version>
  29. <commons.io.version>2.11.0</commons.io.version>
  30. <commons.fileupload.version>1.4</commons.fileupload.version>
  31. <poi.version>4.1.2</poi.version>
  32. <velocity.version>2.3</velocity.version>
  33. <log4j2.version>2.17.0</log4j2.version>
  34. </properties>
  35. <!-- 依赖声明 -->
  36. <dependencyManagement>
  37. <dependencies>
  38. <!-- SpringBoot的依赖配置-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-dependencies</artifactId>
  42. <version>2.5.6</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. <!-- 阿里数据库连接池 -->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>druid-spring-boot-starter</artifactId>
  50. <version>${druid.version}</version>
  51. </dependency>
  52. <!-- 验证码 -->
  53. <dependency>
  54. <groupId>com.github.penggle</groupId>
  55. <artifactId>kaptcha</artifactId>
  56. <version>${kaptcha.version}</version>
  57. </dependency>
  58. <!-- Shiro核心框架 -->
  59. <dependency>
  60. <groupId>org.apache.shiro</groupId>
  61. <artifactId>shiro-core</artifactId>
  62. <version>${shiro.version}</version>
  63. </dependency>
  64. <!-- Shiro使用Spring框架 -->
  65. <dependency>
  66. <groupId>org.apache.shiro</groupId>
  67. <artifactId>shiro-spring</artifactId>
  68. <version>${shiro.version}</version>
  69. </dependency>
  70. <!-- Shiro使用EhCache缓存框架 -->
  71. <dependency>
  72. <groupId>org.apache.shiro</groupId>
  73. <artifactId>shiro-ehcache</artifactId>
  74. <version>${shiro.version}</version>
  75. </dependency>
  76. <!-- thymeleaf模板引擎和spring框架的整合 -->
  77. <dependency>
  78. <groupId>org.thymeleaf</groupId>
  79. <artifactId>thymeleaf-spring5</artifactId>
  80. <version>${thymeleaf.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.thymeleaf</groupId>
  84. <artifactId>thymeleaf</artifactId>
  85. <version>${thymeleaf.version}</version>
  86. </dependency>
  87. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  88. <dependency>
  89. <groupId>com.github.theborakompanioni</groupId>
  90. <artifactId>thymeleaf-extras-shiro</artifactId>
  91. <version>${thymeleaf.extras.shiro.version}</version>
  92. </dependency>
  93. <!-- 解析客户端操作系统、浏览器等 -->
  94. <dependency>
  95. <groupId>eu.bitwalker</groupId>
  96. <artifactId>UserAgentUtils</artifactId>
  97. <version>${bitwalker.version}</version>
  98. </dependency>
  99. <!-- SpringBoot集成mybatis框架 -->
  100. <dependency>
  101. <groupId>org.mybatis.spring.boot</groupId>
  102. <artifactId>mybatis-spring-boot-starter</artifactId>
  103. <version>${mybatis-spring-boot.version}</version>
  104. </dependency>
  105. <!-- pagehelper 分页插件 -->
  106. <dependency>
  107. <groupId>com.github.pagehelper</groupId>
  108. <artifactId>pagehelper-spring-boot-starter</artifactId>
  109. <version>${pagehelper.boot.version}</version>
  110. </dependency>
  111. <!-- 获取系统信息 -->
  112. <dependency>
  113. <groupId>com.github.oshi</groupId>
  114. <artifactId>oshi-core</artifactId>
  115. <version>${oshi.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>net.java.dev.jna</groupId>
  119. <artifactId>jna</artifactId>
  120. <version>${jna.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>net.java.dev.jna</groupId>
  124. <artifactId>jna-platform</artifactId>
  125. <version>${jna.version}</version>
  126. </dependency>
  127. <!-- Swagger3依赖 -->
  128. <dependency>
  129. <groupId>io.springfox</groupId>
  130. <artifactId>springfox-boot-starter</artifactId>
  131. <version>${swagger.version}</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>io.swagger</groupId>
  135. <artifactId>swagger-models</artifactId>
  136. </exclusion>
  137. </exclusions>
  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. <!-- 文件上传工具类 -->
  146. <dependency>
  147. <groupId>commons-fileupload</groupId>
  148. <artifactId>commons-fileupload</artifactId>
  149. <version>${commons.fileupload.version}</version>
  150. </dependency>
  151. <!-- excel工具 -->
  152. <dependency>
  153. <groupId>org.apache.poi</groupId>
  154. <artifactId>poi-ooxml</artifactId>
  155. <version>${poi.version}</version>
  156. </dependency>
  157. <!-- velocity代码生成使用模板 -->
  158. <dependency>
  159. <groupId>org.apache.velocity</groupId>
  160. <artifactId>velocity-engine-core</artifactId>
  161. <version>${velocity.version}</version>
  162. </dependency>
  163. <!-- 阿里JSON解析器 -->
  164. <dependency>
  165. <groupId>com.alibaba</groupId>
  166. <artifactId>fastjson</artifactId>
  167. <version>${fastjson.version}</version>
  168. </dependency>
  169. <!-- log4j日志组件 -->
  170. <dependency>
  171. <groupId>org.apache.logging.log4j</groupId>
  172. <artifactId>log4j-api</artifactId>
  173. <version>${log4j2.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.apache.logging.log4j</groupId>
  177. <artifactId>log4j-to-slf4j</artifactId>
  178. <version>${log4j2.version}</version>
  179. </dependency>
  180. <!-- 定时任务-->
  181. <dependency>
  182. <groupId>com.ruoyi</groupId>
  183. <artifactId>ruoyi-quartz</artifactId>
  184. <version>${ruoyi.version}</version>
  185. </dependency>
  186. <!-- 代码生成-->
  187. <dependency>
  188. <groupId>com.ruoyi</groupId>
  189. <artifactId>ruoyi-generator</artifactId>
  190. <version>${ruoyi.version}</version>
  191. </dependency>
  192. <!-- 核心模块-->
  193. <dependency>
  194. <groupId>com.ruoyi</groupId>
  195. <artifactId>ruoyi-framework</artifactId>
  196. <version>${ruoyi.version}</version>
  197. </dependency>
  198. <!-- 系统模块-->
  199. <dependency>
  200. <groupId>com.ruoyi</groupId>
  201. <artifactId>ruoyi-system</artifactId>
  202. <version>${ruoyi.version}</version>
  203. </dependency>
  204. <!-- 通用工具-->
  205. <dependency>
  206. <groupId>com.ruoyi</groupId>
  207. <artifactId>ruoyi-common</artifactId>
  208. <version>${ruoyi.version}</version>
  209. </dependency>
  210. </dependencies>
  211. </dependencyManagement>
  212. <modules>
  213. <module>ruoyi-admin</module>
  214. <module>ruoyi-framework</module>
  215. <module>ruoyi-system</module>
  216. <module>ruoyi-quartz</module>
  217. <module>ruoyi-generator</module>
  218. <module>ruoyi-common</module>
  219. </modules>
  220. <packaging>pom</packaging>
  221. <dependencies>
  222. </dependencies>
  223. <build>
  224. <plugins>
  225. <plugin>
  226. <groupId>org.apache.maven.plugins</groupId>
  227. <artifactId>maven-compiler-plugin</artifactId>
  228. <version>3.1</version>
  229. <configuration>
  230. <source>${java.version}</source>
  231. <target>${java.version}</target>
  232. <encoding>${project.build.sourceEncoding}</encoding>
  233. </configuration>
  234. </plugin>
  235. </plugins>
  236. </build>
  237. <repositories>
  238. <repository>
  239. <id>public</id>
  240. <name>aliyun nexus</name>
  241. <url>https://maven.aliyun.com/repository/public</url>
  242. <releases>
  243. <enabled>true</enabled>
  244. </releases>
  245. </repository>
  246. </repositories>
  247. <pluginRepositories>
  248. <pluginRepository>
  249. <id>public</id>
  250. <name>aliyun nexus</name>
  251. <url>https://maven.aliyun.com/repository/public</url>
  252. <releases>
  253. <enabled>true</enabled>
  254. </releases>
  255. <snapshots>
  256. <enabled>false</enabled>
  257. </snapshots>
  258. </pluginRepository>
  259. </pluginRepositories>
  260. </project>