pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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.4</version>
  8. <name>ruoyi</name>
  9. <url>http://www.ruoyi.vip</url>
  10. <description>若依管理系统</description>
  11. <properties>
  12. <ruoyi.version>4.7.4</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.9.1</shiro.version>
  18. <thymeleaf.extras.shiro.version>2.1.0</thymeleaf.extras.shiro.version>
  19. <druid.version>1.2.11</druid.version>
  20. <bitwalker.version>1.21</bitwalker.version>
  21. <kaptcha.version>2.3.2</kaptcha.version>
  22. <swagger.version>3.0.0</swagger.version>
  23. <mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version>
  24. <pagehelper.boot.version>1.4.3</pagehelper.boot.version>
  25. <fastjson.version>1.2.83</fastjson.version>
  26. <oshi.version>6.2.2</oshi.version>
  27. <commons.io.version>2.11.0</commons.io.version>
  28. <commons.fileupload.version>1.4</commons.fileupload.version>
  29. <poi.version>4.1.2</poi.version>
  30. <velocity.version>2.3</velocity.version>
  31. </properties>
  32. <!-- 依赖声明 -->
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- SpringBoot的依赖配置-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-dependencies</artifactId>
  39. <version>2.5.14</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <!-- 阿里数据库连接池 -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid-spring-boot-starter</artifactId>
  47. <version>${druid.version}</version>
  48. </dependency>
  49. <!-- 验证码 -->
  50. <dependency>
  51. <groupId>com.github.penggle</groupId>
  52. <artifactId>kaptcha</artifactId>
  53. <version>${kaptcha.version}</version>
  54. </dependency>
  55. <!-- Shiro核心框架 -->
  56. <dependency>
  57. <groupId>org.apache.shiro</groupId>
  58. <artifactId>shiro-core</artifactId>
  59. <version>${shiro.version}</version>
  60. </dependency>
  61. <!-- Shiro使用Spring框架 -->
  62. <dependency>
  63. <groupId>org.apache.shiro</groupId>
  64. <artifactId>shiro-spring</artifactId>
  65. <version>${shiro.version}</version>
  66. </dependency>
  67. <!-- Shiro使用EhCache缓存框架 -->
  68. <dependency>
  69. <groupId>org.apache.shiro</groupId>
  70. <artifactId>shiro-ehcache</artifactId>
  71. <version>${shiro.version}</version>
  72. </dependency>
  73. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  74. <dependency>
  75. <groupId>com.github.theborakompanioni</groupId>
  76. <artifactId>thymeleaf-extras-shiro</artifactId>
  77. <version>${thymeleaf.extras.shiro.version}</version>
  78. </dependency>
  79. <!-- 解析客户端操作系统、浏览器等 -->
  80. <dependency>
  81. <groupId>eu.bitwalker</groupId>
  82. <artifactId>UserAgentUtils</artifactId>
  83. <version>${bitwalker.version}</version>
  84. </dependency>
  85. <!-- SpringBoot集成mybatis框架 -->
  86. <dependency>
  87. <groupId>org.mybatis.spring.boot</groupId>
  88. <artifactId>mybatis-spring-boot-starter</artifactId>
  89. <version>${mybatis-spring-boot.version}</version>
  90. </dependency>
  91. <!-- pagehelper 分页插件 -->
  92. <dependency>
  93. <groupId>com.github.pagehelper</groupId>
  94. <artifactId>pagehelper-spring-boot-starter</artifactId>
  95. <version>${pagehelper.boot.version}</version>
  96. </dependency>
  97. <!-- 获取系统信息 -->
  98. <dependency>
  99. <groupId>com.github.oshi</groupId>
  100. <artifactId>oshi-core</artifactId>
  101. <version>${oshi.version}</version>
  102. </dependency>
  103. <!-- Swagger3依赖 -->
  104. <dependency>
  105. <groupId>io.springfox</groupId>
  106. <artifactId>springfox-boot-starter</artifactId>
  107. <version>${swagger.version}</version>
  108. <exclusions>
  109. <exclusion>
  110. <groupId>io.swagger</groupId>
  111. <artifactId>swagger-models</artifactId>
  112. </exclusion>
  113. </exclusions>
  114. </dependency>
  115. <!-- io常用工具类 -->
  116. <dependency>
  117. <groupId>commons-io</groupId>
  118. <artifactId>commons-io</artifactId>
  119. <version>${commons.io.version}</version>
  120. </dependency>
  121. <!-- 文件上传工具类 -->
  122. <dependency>
  123. <groupId>commons-fileupload</groupId>
  124. <artifactId>commons-fileupload</artifactId>
  125. <version>${commons.fileupload.version}</version>
  126. </dependency>
  127. <!-- excel工具 -->
  128. <dependency>
  129. <groupId>org.apache.poi</groupId>
  130. <artifactId>poi-ooxml</artifactId>
  131. <version>${poi.version}</version>
  132. </dependency>
  133. <!-- velocity代码生成使用模板 -->
  134. <dependency>
  135. <groupId>org.apache.velocity</groupId>
  136. <artifactId>velocity-engine-core</artifactId>
  137. <version>${velocity.version}</version>
  138. </dependency>
  139. <!-- 阿里JSON解析器 -->
  140. <dependency>
  141. <groupId>com.alibaba</groupId>
  142. <artifactId>fastjson</artifactId>
  143. <version>${fastjson.version}</version>
  144. </dependency>
  145. <!-- 定时任务-->
  146. <dependency>
  147. <groupId>com.ruoyi</groupId>
  148. <artifactId>ruoyi-quartz</artifactId>
  149. <version>${ruoyi.version}</version>
  150. </dependency>
  151. <!-- 代码生成-->
  152. <dependency>
  153. <groupId>com.ruoyi</groupId>
  154. <artifactId>ruoyi-generator</artifactId>
  155. <version>${ruoyi.version}</version>
  156. </dependency>
  157. <!-- 核心模块-->
  158. <dependency>
  159. <groupId>com.ruoyi</groupId>
  160. <artifactId>ruoyi-framework</artifactId>
  161. <version>${ruoyi.version}</version>
  162. </dependency>
  163. <!-- 系统模块-->
  164. <dependency>
  165. <groupId>com.ruoyi</groupId>
  166. <artifactId>ruoyi-system</artifactId>
  167. <version>${ruoyi.version}</version>
  168. </dependency>
  169. <!-- 通用工具-->
  170. <dependency>
  171. <groupId>com.ruoyi</groupId>
  172. <artifactId>ruoyi-common</artifactId>
  173. <version>${ruoyi.version}</version>
  174. </dependency>
  175. </dependencies>
  176. </dependencyManagement>
  177. <modules>
  178. <module>ruoyi-admin</module>
  179. <module>ruoyi-framework</module>
  180. <module>ruoyi-system</module>
  181. <module>ruoyi-quartz</module>
  182. <module>ruoyi-generator</module>
  183. <module>ruoyi-common</module>
  184. </modules>
  185. <packaging>pom</packaging>
  186. <dependencies>
  187. </dependencies>
  188. <build>
  189. <plugins>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-compiler-plugin</artifactId>
  193. <version>3.1</version>
  194. <configuration>
  195. <source>${java.version}</source>
  196. <target>${java.version}</target>
  197. <encoding>${project.build.sourceEncoding}</encoding>
  198. </configuration>
  199. </plugin>
  200. </plugins>
  201. </build>
  202. <repositories>
  203. <repository>
  204. <id>public</id>
  205. <name>aliyun nexus</name>
  206. <url>https://maven.aliyun.com/repository/public</url>
  207. <releases>
  208. <enabled>true</enabled>
  209. </releases>
  210. </repository>
  211. </repositories>
  212. <pluginRepositories>
  213. <pluginRepository>
  214. <id>public</id>
  215. <name>aliyun nexus</name>
  216. <url>https://maven.aliyun.com/repository/public</url>
  217. <releases>
  218. <enabled>true</enabled>
  219. </releases>
  220. <snapshots>
  221. <enabled>false</enabled>
  222. </snapshots>
  223. </pluginRepository>
  224. </pluginRepositories>
  225. </project>