You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

241 line
8.3 KiB

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