pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.ruoyi</groupId>
  7. <artifactId>ruoyi</artifactId>
  8. <version>3.1.0</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.1.0</ruoyi.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <mybatis.boot.version>1.3.2</mybatis.boot.version>
  19. <druid.version>1.1.22</druid.version>
  20. <bitwalker.version>1.19</bitwalker.version>
  21. <swagger.version>2.9.2</swagger.version>
  22. <kaptcha.version>2.3.2</kaptcha.version>
  23. <pagehelper.boot.version>1.2.5</pagehelper.boot.version>
  24. <fastjson.version>1.2.73</fastjson.version>
  25. <oshi.version>3.9.1</oshi.version>
  26. <commons.io.version>2.5</commons.io.version>
  27. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  28. <poi.version>3.17</poi.version>
  29. <velocity.version>1.7</velocity.version>
  30. <jwt.version>0.9.1</jwt.version>
  31. <mybatis-plus.version>3.3.0</mybatis-plus.version>
  32. <hutool.version>5.1.0</hutool.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.1.17.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>eu.bitwalker</groupId>
  54. <artifactId>UserAgentUtils</artifactId>
  55. <version>${bitwalker.version}</version>
  56. </dependency>
  57. <!-- pagehelper 分页插件 -->
  58. <dependency>
  59. <groupId>com.github.pagehelper</groupId>
  60. <artifactId>pagehelper-spring-boot-starter</artifactId>
  61. <version>${pagehelper.boot.version}</version>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>org.mybatis</groupId>
  65. <artifactId>mybatis</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <!-- 获取系统信息 -->
  70. <dependency>
  71. <groupId>com.github.oshi</groupId>
  72. <artifactId>oshi-core</artifactId>
  73. <version>${oshi.version}</version>
  74. </dependency>
  75. <!-- swagger2-->
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger2</artifactId>
  79. <version>${swagger.version}</version>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>io.swagger</groupId>
  83. <artifactId>swagger-annotations</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>io.swagger</groupId>
  87. <artifactId>swagger-models</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <!-- swagger2-UI-->
  92. <dependency>
  93. <groupId>io.springfox</groupId>
  94. <artifactId>springfox-swagger-ui</artifactId>
  95. <version>${swagger.version}</version>
  96. </dependency>
  97. <!--io常用工具类 -->
  98. <dependency>
  99. <groupId>commons-io</groupId>
  100. <artifactId>commons-io</artifactId>
  101. <version>${commons.io.version}</version>
  102. </dependency>
  103. <!--文件上传工具类 -->
  104. <dependency>
  105. <groupId>commons-fileupload</groupId>
  106. <artifactId>commons-fileupload</artifactId>
  107. <version>${commons.fileupload.version}</version>
  108. </dependency>
  109. <!-- excel工具 -->
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi-ooxml</artifactId>
  113. <version>${poi.version}</version>
  114. </dependency>
  115. <!--velocity代码生成使用模板 -->
  116. <dependency>
  117. <groupId>org.apache.velocity</groupId>
  118. <artifactId>velocity</artifactId>
  119. <version>${velocity.version}</version>
  120. </dependency>
  121. <!-- 阿里JSON解析器 -->
  122. <dependency>
  123. <groupId>com.alibaba</groupId>
  124. <artifactId>fastjson</artifactId>
  125. <version>${fastjson.version}</version>
  126. </dependency>
  127. <!--Token生成与解析-->
  128. <dependency>
  129. <groupId>io.jsonwebtoken</groupId>
  130. <artifactId>jjwt</artifactId>
  131. <version>${jwt.version}</version>
  132. </dependency>
  133. <!--验证码 -->
  134. <dependency>
  135. <groupId>com.github.penggle</groupId>
  136. <artifactId>kaptcha</artifactId>
  137. <version>${kaptcha.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.baomidou</groupId>
  141. <artifactId>mybatis-plus-boot-starter</artifactId>
  142. <version>${mybatis-plus.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.baomidou</groupId>
  146. <artifactId>mybatis-plus-extension</artifactId>
  147. <version>${mybatis-plus.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>cn.hutool</groupId>
  151. <artifactId>hutool-all</artifactId>
  152. <version>${hutool.version}</version>
  153. </dependency>
  154. <!-- 定时任务-->
  155. <dependency>
  156. <groupId>com.ruoyi</groupId>
  157. <artifactId>ruoyi-quartz</artifactId>
  158. <version>${ruoyi.version}</version>
  159. </dependency>
  160. <!-- 代码生成-->
  161. <dependency>
  162. <groupId>com.ruoyi</groupId>
  163. <artifactId>ruoyi-generator</artifactId>
  164. <version>${ruoyi.version}</version>
  165. </dependency>
  166. <!-- 核心模块-->
  167. <dependency>
  168. <groupId>com.ruoyi</groupId>
  169. <artifactId>ruoyi-framework</artifactId>
  170. <version>${ruoyi.version}</version>
  171. </dependency>
  172. <!-- 系统模块-->
  173. <dependency>
  174. <groupId>com.ruoyi</groupId>
  175. <artifactId>ruoyi-system</artifactId>
  176. <version>${ruoyi.version}</version>
  177. </dependency>
  178. <!-- 通用工具-->
  179. <dependency>
  180. <groupId>com.ruoyi</groupId>
  181. <artifactId>ruoyi-common</artifactId>
  182. <version>${ruoyi.version}</version>
  183. </dependency>
  184. </dependencies>
  185. </dependencyManagement>
  186. <modules>
  187. <module>ruoyi-admin</module>
  188. <module>ruoyi-framework</module>
  189. <module>ruoyi-system</module>
  190. <module>ruoyi-quartz</module>
  191. <module>ruoyi-generator</module>
  192. <module>ruoyi-common</module>
  193. </modules>
  194. <packaging>pom</packaging>
  195. <dependencies>
  196. </dependencies>
  197. <build>
  198. <plugins>
  199. <plugin>
  200. <groupId>org.apache.maven.plugins</groupId>
  201. <artifactId>maven-compiler-plugin</artifactId>
  202. <version>3.1</version>
  203. <configuration>
  204. <source>${java.version}</source>
  205. <target>${java.version}</target>
  206. <encoding>${project.build.sourceEncoding}</encoding>
  207. </configuration>
  208. </plugin>
  209. </plugins>
  210. </build>
  211. <repositories>
  212. <repository>
  213. <id>public</id>
  214. <name>aliyun nexus</name>
  215. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  216. <releases>
  217. <enabled>true</enabled>
  218. </releases>
  219. </repository>
  220. </repositories>
  221. <pluginRepositories>
  222. <pluginRepository>
  223. <id>public</id>
  224. <name>aliyun nexus</name>
  225. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  226. <releases>
  227. <enabled>true</enabled>
  228. </releases>
  229. <snapshots>
  230. <enabled>false</enabled>
  231. </snapshots>
  232. </pluginRepository>
  233. </pluginRepositories>
  234. </project>