pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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.6.0</version>
  8. <name>ruoyi</name>
  9. <url>http://www.ruoyi.vip</url>
  10. <description>若依管理系统</description>
  11. <properties>
  12. <ruoyi.version>4.6.0</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.7.1</shiro.version>
  18. <thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
  19. <druid.version>1.2.4</druid.version>
  20. <bitwalker.version>1.21</bitwalker.version>
  21. <kaptcha.version>2.3.2</kaptcha.version>
  22. <swagger.version>2.9.2</swagger.version>
  23. <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
  24. <fastjson.version>1.2.75</fastjson.version>
  25. <oshi.version>5.3.6</oshi.version>
  26. <jna.version>5.6.0</jna.version>
  27. <commons.io.version>2.5</commons.io.version>
  28. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  29. <poi.version>4.1.2</poi.version>
  30. <velocity.version>1.7</velocity.version>
  31. <activiti.version>6.0.0</activiti.version>
  32. <thymeleaf.version>3.0.14.RELEASE</thymeleaf.version>
  33. <log4j2.version>2.17.1</log4j2.version>
  34. </properties>
  35. <!-- 依赖声明 -->
  36. <dependencyManagement>
  37. <dependencies>
  38. <!-- thymeleaf模板引擎和spring框架的整合 -->
  39. <dependency>
  40. <groupId>org.thymeleaf</groupId>
  41. <artifactId>thymeleaf-spring5</artifactId>
  42. <version>${thymeleaf.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.thymeleaf</groupId>
  46. <artifactId>thymeleaf</artifactId>
  47. <version>${thymeleaf.version}</version>
  48. </dependency>
  49. <!-- log4j日志组件 -->
  50. <dependency>
  51. <groupId>org.apache.logging.log4j</groupId>
  52. <artifactId>log4j-api</artifactId>
  53. <version>${log4j2.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.logging.log4j</groupId>
  57. <artifactId>log4j-to-slf4j</artifactId>
  58. <version>${log4j2.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <version>1.16.20</version>
  64. </dependency>
  65. <!-- SpringBoot的依赖配置-->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-dependencies</artifactId>
  69. <version>2.2.12.RELEASE</version>
  70. <type>pom</type>
  71. <scope>import</scope>
  72. </dependency>
  73. <!--阿里数据库连接池 -->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>druid-spring-boot-starter</artifactId>
  77. <version>${druid.version}</version>
  78. </dependency>
  79. <!--验证码 -->
  80. <dependency>
  81. <groupId>com.github.penggle</groupId>
  82. <artifactId>kaptcha</artifactId>
  83. <version>${kaptcha.version}</version>
  84. </dependency>
  85. <!--Shiro核心框架 -->
  86. <dependency>
  87. <groupId>org.apache.shiro</groupId>
  88. <artifactId>shiro-core</artifactId>
  89. <version>${shiro.version}</version>
  90. </dependency>
  91. <!-- Shiro使用Spring框架 -->
  92. <dependency>
  93. <groupId>org.apache.shiro</groupId>
  94. <artifactId>shiro-spring</artifactId>
  95. <version>${shiro.version}</version>
  96. </dependency>
  97. <!-- Shiro使用EhCache缓存框架 -->
  98. <dependency>
  99. <groupId>org.apache.shiro</groupId>
  100. <artifactId>shiro-ehcache</artifactId>
  101. <version>${shiro.version}</version>
  102. </dependency>
  103. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  104. <dependency>
  105. <groupId>com.github.theborakompanioni</groupId>
  106. <artifactId>thymeleaf-extras-shiro</artifactId>
  107. <version>${thymeleaf.extras.shiro.version}</version>
  108. </dependency>
  109. <!-- 解析客户端操作系统、浏览器等 -->
  110. <dependency>
  111. <groupId>eu.bitwalker</groupId>
  112. <artifactId>UserAgentUtils</artifactId>
  113. <version>${bitwalker.version}</version>
  114. </dependency>
  115. <!-- pagehelper 分页插件 -->
  116. <dependency>
  117. <groupId>com.github.pagehelper</groupId>
  118. <artifactId>pagehelper-spring-boot-starter</artifactId>
  119. <version>${pagehelper.boot.version}</version>
  120. </dependency>
  121. <!-- 获取系统信息 -->
  122. <dependency>
  123. <groupId>com.github.oshi</groupId>
  124. <artifactId>oshi-core</artifactId>
  125. <version>${oshi.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>net.java.dev.jna</groupId>
  129. <artifactId>jna</artifactId>
  130. <version>${jna.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>net.java.dev.jna</groupId>
  134. <artifactId>jna-platform</artifactId>
  135. <version>${jna.version}</version>
  136. </dependency>
  137. <!-- swagger2-->
  138. <dependency>
  139. <groupId>io.springfox</groupId>
  140. <artifactId>springfox-swagger2</artifactId>
  141. <version>${swagger.version}</version>
  142. <exclusions>
  143. <exclusion>
  144. <groupId>io.swagger</groupId>
  145. <artifactId>swagger-annotations</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>io.swagger</groupId>
  149. <artifactId>swagger-models</artifactId>
  150. </exclusion>
  151. </exclusions>
  152. </dependency>
  153. <!-- swagger2-UI-->
  154. <dependency>
  155. <groupId>io.springfox</groupId>
  156. <artifactId>springfox-swagger-ui</artifactId>
  157. <version>${swagger.version}</version>
  158. </dependency>
  159. <!--io常用工具类 -->
  160. <dependency>
  161. <groupId>commons-io</groupId>
  162. <artifactId>commons-io</artifactId>
  163. <version>${commons.io.version}</version>
  164. </dependency>
  165. <!--文件上传工具类 -->
  166. <dependency>
  167. <groupId>commons-fileupload</groupId>
  168. <artifactId>commons-fileupload</artifactId>
  169. <version>${commons.fileupload.version}</version>
  170. </dependency>
  171. <!-- excel工具 -->
  172. <dependency>
  173. <groupId>org.apache.poi</groupId>
  174. <artifactId>poi-ooxml</artifactId>
  175. <version>${poi.version}</version>
  176. </dependency>
  177. <!--velocity代码生成使用模板 -->
  178. <dependency>
  179. <groupId>org.apache.velocity</groupId>
  180. <artifactId>velocity</artifactId>
  181. <version>${velocity.version}</version>
  182. </dependency>
  183. <!-- 阿里JSON解析器 -->
  184. <dependency>
  185. <groupId>com.alibaba</groupId>
  186. <artifactId>fastjson</artifactId>
  187. <version>${fastjson.version}</version>
  188. </dependency>
  189. <!-- 定时任务-->
  190. <dependency>
  191. <groupId>com.ruoyi</groupId>
  192. <artifactId>ruoyi-quartz</artifactId>
  193. <version>${ruoyi.version}</version>
  194. </dependency>
  195. <!-- 代码生成-->
  196. <dependency>
  197. <groupId>com.ruoyi</groupId>
  198. <artifactId>ruoyi-generator</artifactId>
  199. <version>${ruoyi.version}</version>
  200. </dependency>
  201. <!-- 核心模块-->
  202. <dependency>
  203. <groupId>com.ruoyi</groupId>
  204. <artifactId>ruoyi-framework</artifactId>
  205. <version>${ruoyi.version}</version>
  206. </dependency>
  207. <!-- 系统模块-->
  208. <dependency>
  209. <groupId>com.ruoyi</groupId>
  210. <artifactId>ruoyi-system</artifactId>
  211. <version>${ruoyi.version}</version>
  212. </dependency>
  213. <!-- 通用工具-->
  214. <dependency>
  215. <groupId>com.ruoyi</groupId>
  216. <artifactId>ruoyi-common</artifactId>
  217. <version>${ruoyi.version}</version>
  218. </dependency>
  219. <!-- 达梦驱动包 -->
  220. <dependency>
  221. <groupId>com.dm</groupId>
  222. <artifactId>DmJdbcDriver</artifactId>
  223. <version>1.8.0</version>
  224. </dependency>
  225. <!-- mybatisPlus-->
  226. <dependency>
  227. <groupId>com.baomidou</groupId>
  228. <artifactId>mybatis-plus-boot-starter</artifactId>
  229. <version>3.1.1</version>
  230. </dependency>
  231. </dependencies>
  232. </dependencyManagement>
  233. <modules>
  234. <module>ruoyi-admin</module>
  235. <module>ruoyi-framework</module>
  236. <module>ruoyi-system</module>
  237. <module>ruoyi-quartz</module>
  238. <module>ruoyi-generator</module>
  239. <module>ruoyi-common</module>
  240. <module>ruoyi-hndj</module>
  241. </modules>
  242. <packaging>pom</packaging>
  243. <dependencies>
  244. </dependencies>
  245. <build>
  246. <plugins>
  247. <plugin>
  248. <groupId>org.apache.maven.plugins</groupId>
  249. <artifactId>maven-compiler-plugin</artifactId>
  250. <version>3.1</version>
  251. <configuration>
  252. <source>${java.version}</source>
  253. <target>${java.version}</target>
  254. <encoding>${project.build.sourceEncoding}</encoding>
  255. </configuration>
  256. </plugin>
  257. </plugins>
  258. </build>
  259. <repositories>
  260. <repository>
  261. <id>public</id>
  262. <name>aliyun nexus</name>
  263. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  264. <releases>
  265. <enabled>true</enabled>
  266. </releases>
  267. </repository>
  268. </repositories>
  269. <pluginRepositories>
  270. <pluginRepository>
  271. <id>public</id>
  272. <name>aliyun nexus</name>
  273. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  274. <releases>
  275. <enabled>true</enabled>
  276. </releases>
  277. <snapshots>
  278. <enabled>false</enabled>
  279. </snapshots>
  280. </pluginRepository>
  281. </pluginRepositories>
  282. </project>