pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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.2</version>
  8. <name>ruoyi</name>
  9. <url>http://www.ruoyi.vip</url>
  10. <description>若依管理系统</description>
  11. <properties>
  12. <ruoyi.version>4.6.2</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.6</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.1.4</mybatis-spring-boot.version>
  24. <pagehelper.boot.version>1.3.1</pagehelper.boot.version>
  25. <fastjson.version>1.2.76</fastjson.version>
  26. <oshi.version>5.7.4</oshi.version>
  27. <jna.version>5.8.0</jna.version>
  28. <commons.io.version>2.10.0</commons.io.version>
  29. <commons.fileupload.version>1.4</commons.fileupload.version>
  30. <poi.version>4.1.2</poi.version>
  31. <velocity.version>1.7</velocity.version>
  32. <oracle.version>10.2.0.4.0</oracle.version>
  33. </properties>
  34. <!-- 依赖声明 -->
  35. <dependencyManagement>
  36. <dependencies>
  37. <!-- SpringBoot的依赖配置-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-dependencies</artifactId>
  41. <version>2.2.13.RELEASE</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. <!-- 阿里数据库连接池 -->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid-spring-boot-starter</artifactId>
  49. <version>${druid.version}</version>
  50. </dependency>
  51. <!-- 验证码 -->
  52. <dependency>
  53. <groupId>com.github.penggle</groupId>
  54. <artifactId>kaptcha</artifactId>
  55. <version>${kaptcha.version}</version>
  56. </dependency>
  57. <!-- Shiro核心框架 -->
  58. <dependency>
  59. <groupId>org.apache.shiro</groupId>
  60. <artifactId>shiro-core</artifactId>
  61. <version>${shiro.version}</version>
  62. </dependency>
  63. <!-- Shiro使用Spring框架 -->
  64. <dependency>
  65. <groupId>org.apache.shiro</groupId>
  66. <artifactId>shiro-spring</artifactId>
  67. <version>${shiro.version}</version>
  68. </dependency>
  69. <!-- Shiro使用EhCache缓存框架 -->
  70. <dependency>
  71. <groupId>org.apache.shiro</groupId>
  72. <artifactId>shiro-ehcache</artifactId>
  73. <version>${shiro.version}</version>
  74. </dependency>
  75. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  76. <dependency>
  77. <groupId>com.github.theborakompanioni</groupId>
  78. <artifactId>thymeleaf-extras-shiro</artifactId>
  79. <version>${thymeleaf.extras.shiro.version}</version>
  80. </dependency>
  81. <!-- 解析客户端操作系统、浏览器等 -->
  82. <dependency>
  83. <groupId>eu.bitwalker</groupId>
  84. <artifactId>UserAgentUtils</artifactId>
  85. <version>${bitwalker.version}</version>
  86. </dependency>
  87. <!-- SpringBoot集成mybatis框架 -->
  88. <dependency>
  89. <groupId>org.mybatis.spring.boot</groupId>
  90. <artifactId>mybatis-spring-boot-starter</artifactId>
  91. <version>${mybatis-spring-boot.version}</version>
  92. </dependency>
  93. <!-- pagehelper 分页插件 -->
  94. <dependency>
  95. <groupId>com.github.pagehelper</groupId>
  96. <artifactId>pagehelper-spring-boot-starter</artifactId>
  97. <version>${pagehelper.boot.version}</version>
  98. </dependency>
  99. <!-- 获取系统信息 -->
  100. <dependency>
  101. <groupId>com.github.oshi</groupId>
  102. <artifactId>oshi-core</artifactId>
  103. <version>${oshi.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>net.java.dev.jna</groupId>
  107. <artifactId>jna</artifactId>
  108. <version>${jna.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>net.java.dev.jna</groupId>
  112. <artifactId>jna-platform</artifactId>
  113. <version>${jna.version}</version>
  114. </dependency>
  115. <!-- Swagger3依赖 -->
  116. <dependency>
  117. <groupId>io.springfox</groupId>
  118. <artifactId>springfox-boot-starter</artifactId>
  119. <version>${swagger.version}</version>
  120. <exclusions>
  121. <exclusion>
  122. <groupId>io.swagger</groupId>
  123. <artifactId>swagger-models</artifactId>
  124. </exclusion>
  125. </exclusions>
  126. </dependency>
  127. <!-- io常用工具类 -->
  128. <dependency>
  129. <groupId>commons-io</groupId>
  130. <artifactId>commons-io</artifactId>
  131. <version>${commons.io.version}</version>
  132. </dependency>
  133. <!-- 文件上传工具类 -->
  134. <dependency>
  135. <groupId>commons-fileupload</groupId>
  136. <artifactId>commons-fileupload</artifactId>
  137. <version>${commons.fileupload.version}</version>
  138. </dependency>
  139. <!-- excel工具 -->
  140. <dependency>
  141. <groupId>org.apache.poi</groupId>
  142. <artifactId>poi-ooxml</artifactId>
  143. <version>${poi.version}</version>
  144. </dependency>
  145. <!-- velocity代码生成使用模板 -->
  146. <dependency>
  147. <groupId>org.apache.velocity</groupId>
  148. <artifactId>velocity</artifactId>
  149. <version>${velocity.version}</version>
  150. <exclusions>
  151. <exclusion>
  152. <groupId>commons-collections</groupId>
  153. <artifactId>commons-collections</artifactId>
  154. </exclusion>
  155. </exclusions>
  156. </dependency>
  157. <!-- 阿里JSON解析器 -->
  158. <dependency>
  159. <groupId>com.alibaba</groupId>
  160. <artifactId>fastjson</artifactId>
  161. <version>${fastjson.version}</version>
  162. </dependency>
  163. <!-- 定时任务-->
  164. <dependency>
  165. <groupId>com.ruoyi</groupId>
  166. <artifactId>ruoyi-quartz</artifactId>
  167. <version>${ruoyi.version}</version>
  168. </dependency>
  169. <!-- 代码生成-->
  170. <dependency>
  171. <groupId>com.ruoyi</groupId>
  172. <artifactId>ruoyi-generator</artifactId>
  173. <version>${ruoyi.version}</version>
  174. </dependency>
  175. <!-- 核心模块-->
  176. <dependency>
  177. <groupId>com.ruoyi</groupId>
  178. <artifactId>ruoyi-framework</artifactId>
  179. <version>${ruoyi.version}</version>
  180. </dependency>
  181. <!-- 系统模块-->
  182. <dependency>
  183. <groupId>com.ruoyi</groupId>
  184. <artifactId>ruoyi-system</artifactId>
  185. <version>${ruoyi.version}</version>
  186. </dependency>
  187. <!-- 预测模块-->
  188. <dependency>
  189. <groupId>com.ruoyi</groupId>
  190. <artifactId>ruoyi-predict</artifactId>
  191. <version>${ruoyi.version}</version>
  192. </dependency>
  193. <!-- 通用工具-->
  194. <dependency>
  195. <groupId>com.ruoyi</groupId>
  196. <artifactId>ruoyi-common</artifactId>
  197. <version>${ruoyi.version}</version>
  198. </dependency>
  199. </dependencies>
  200. </dependencyManagement>
  201. <modules>
  202. <module>ruoyi-admin</module>
  203. <module>ruoyi-framework</module>
  204. <module>ruoyi-system</module>
  205. <module>ruoyi-quartz</module>
  206. <module>ruoyi-generator</module>
  207. <module>ruoyi-common</module>
  208. <module>ruoyi-predict</module>
  209. </modules>
  210. <packaging>pom</packaging>
  211. <dependencies>
  212. </dependencies>
  213. <build>
  214. <plugins>
  215. <plugin>
  216. <groupId>org.apache.maven.plugins</groupId>
  217. <artifactId>maven-compiler-plugin</artifactId>
  218. <version>3.1</version>
  219. <configuration>
  220. <source>${java.version}</source>
  221. <target>${java.version}</target>
  222. <encoding>${project.build.sourceEncoding}</encoding>
  223. </configuration>
  224. </plugin>
  225. </plugins>
  226. </build>
  227. <repositories>
  228. <!-- 阿里云镜像仓库 -->
  229. <repository>
  230. <id>public</id>
  231. <name>aliyun nexus</name>
  232. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  233. <releases>
  234. <enabled>true</enabled>
  235. </releases>
  236. </repository>
  237. <!-- oracle驱动没有发布到中央仓库,只能从此仓库下载 -->
  238. <repository>
  239. <id>jeecg</id>
  240. <name>jeecg Repository</name>
  241. <url>http://maven.jeewx.com/nexus/content/repositories/jeecg</url>
  242. <snapshots>
  243. <enabled>false</enabled>
  244. </snapshots>
  245. </repository>
  246. </repositories>
  247. <pluginRepositories>
  248. <pluginRepository>
  249. <id>public</id>
  250. <name>aliyun nexus</name>
  251. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  252. <releases>
  253. <enabled>true</enabled>
  254. </releases>
  255. <snapshots>
  256. <enabled>false</enabled>
  257. </snapshots>
  258. </pluginRepository>
  259. </pluginRepositories>
  260. </project>