pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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>2.5.0</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依微服务系统</description>
  12. <properties>
  13. <ruoyi.version>2.5.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. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  18. <spring-cloud.version>Hoxton.SR9</spring-cloud.version>
  19. <spring-cloud-alibaba.version>2.2.5.RELEASE</spring-cloud-alibaba.version>
  20. <spring-boot-admin.version>2.3.1</spring-boot-admin.version>
  21. <spring-boot.mybatis>2.1.3</spring-boot.mybatis>
  22. <swagger.fox.version>2.9.2</swagger.fox.version>
  23. <swagger.core.version>1.5.24</swagger.core.version>
  24. <tobato.version>1.26.5</tobato.version>
  25. <kaptcha.version>2.3.2</kaptcha.version>
  26. <pagehelper.boot.version>1.3.0</pagehelper.boot.version>
  27. <druid.version>1.2.4</druid.version>
  28. <dynamic-ds.version>3.2.1</dynamic-ds.version>
  29. <commons.io.version>2.5</commons.io.version>
  30. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  31. <velocity.version>1.7</velocity.version>
  32. <fastjson.version>1.2.83</fastjson.version>
  33. <minio.version>8.0.3</minio.version>
  34. <poi.version>4.1.2</poi.version>
  35. <common-pool.version>2.6.2</common-pool.version>
  36. </properties>
  37. <!-- 依赖声明 -->
  38. <dependencyManagement>
  39. <dependencies>
  40. <!-- SpringCloud 微服务 -->
  41. <dependency>
  42. <groupId>org.springframework.cloud</groupId>
  43. <artifactId>spring-cloud-dependencies</artifactId>
  44. <version>${spring-cloud.version}</version>
  45. <type>pom</type>
  46. <scope>import</scope>
  47. </dependency>
  48. <!-- SpringCloud Alibaba 微服务 -->
  49. <dependency>
  50. <groupId>com.alibaba.cloud</groupId>
  51. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  52. <version>${spring-cloud-alibaba.version}</version>
  53. <type>pom</type>
  54. <scope>import</scope>
  55. </dependency>
  56. <!-- SpringBoot 依赖配置 -->
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-dependencies</artifactId>
  60. <version>${spring-boot.version}</version>
  61. <type>pom</type>
  62. <scope>import</scope>
  63. </dependency>
  64. <!-- SpringBoot 监控客户端 -->
  65. <dependency>
  66. <groupId>de.codecentric</groupId>
  67. <artifactId>spring-boot-admin-starter-client</artifactId>
  68. <version>${spring-boot-admin.version}</version>
  69. </dependency>
  70. <!-- FastDFS 分布式文件系统 -->
  71. <dependency>
  72. <groupId>com.github.tobato</groupId>
  73. <artifactId>fastdfs-client</artifactId>
  74. <version>${tobato.version}</version>
  75. </dependency>
  76. <!-- Mybatis 依赖配置 -->
  77. <dependency>
  78. <groupId>org.mybatis.spring.boot</groupId>
  79. <artifactId>mybatis-spring-boot-starter</artifactId>
  80. <version>${spring-boot.mybatis}</version>
  81. </dependency>
  82. <!-- Swagger 依赖配置 -->
  83. <dependency>
  84. <groupId>io.swagger</groupId>
  85. <artifactId>swagger-models</artifactId>
  86. <version>${swagger.core.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.swagger</groupId>
  90. <artifactId>swagger-annotations</artifactId>
  91. <version>${swagger.core.version}</version>
  92. </dependency>
  93. <!-- 验证码 -->
  94. <dependency>
  95. <groupId>com.github.penggle</groupId>
  96. <artifactId>kaptcha</artifactId>
  97. <version>${kaptcha.version}</version>
  98. </dependency>
  99. <!-- pagehelper 分页插件 -->
  100. <dependency>
  101. <groupId>com.github.pagehelper</groupId>
  102. <artifactId>pagehelper-spring-boot-starter</artifactId>
  103. <version>${pagehelper.boot.version}</version>
  104. </dependency>
  105. <!-- io常用工具类 -->
  106. <dependency>
  107. <groupId>commons-io</groupId>
  108. <artifactId>commons-io</artifactId>
  109. <version>${commons.io.version}</version>
  110. </dependency>
  111. <!-- excel工具 -->
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-ooxml</artifactId>
  115. <version>${poi.version}</version>
  116. </dependency>
  117. <!-- 文件上传工具类 -->
  118. <dependency>
  119. <groupId>commons-fileupload</groupId>
  120. <artifactId>commons-fileupload</artifactId>
  121. <version>${commons.fileupload.version}</version>
  122. </dependency>
  123. <!-- 代码生成使用模板 -->
  124. <dependency>
  125. <groupId>org.apache.velocity</groupId>
  126. <artifactId>velocity</artifactId>
  127. <version>${velocity.version}</version>
  128. </dependency>
  129. <!-- JSON 解析器和生成器 -->
  130. <dependency>
  131. <groupId>com.alibaba</groupId>
  132. <artifactId>fastjson</artifactId>
  133. <version>${fastjson.version}</version>
  134. </dependency>
  135. <!-- 公共资源池 -->
  136. <dependency>
  137. <groupId>org.apache.commons</groupId>
  138. <artifactId>commons-pool2</artifactId>
  139. <version>${common-pool.version}</version>
  140. </dependency>
  141. <!-- 核心模块 -->
  142. <dependency>
  143. <groupId>com.ruoyi</groupId>
  144. <artifactId>ruoyi-common-core</artifactId>
  145. <version>${ruoyi.version}</version>
  146. </dependency>
  147. <!-- 接口模块 -->
  148. <dependency>
  149. <groupId>com.ruoyi</groupId>
  150. <artifactId>ruoyi-common-swagger</artifactId>
  151. <version>${ruoyi.version}</version>
  152. </dependency>
  153. <!-- 安全模块 -->
  154. <dependency>
  155. <groupId>com.ruoyi</groupId>
  156. <artifactId>ruoyi-common-security</artifactId>
  157. <version>${ruoyi.version}</version>
  158. </dependency>
  159. <!-- 权限范围 -->
  160. <dependency>
  161. <groupId>com.ruoyi</groupId>
  162. <artifactId>ruoyi-common-datascope</artifactId>
  163. <version>${ruoyi.version}</version>
  164. </dependency>
  165. <!-- 多数据源 -->
  166. <dependency>
  167. <groupId>com.ruoyi</groupId>
  168. <artifactId>ruoyi-common-datasource</artifactId>
  169. <version>${ruoyi.version}</version>
  170. </dependency>
  171. <!-- 日志记录 -->
  172. <dependency>
  173. <groupId>com.ruoyi</groupId>
  174. <artifactId>ruoyi-common-log</artifactId>
  175. <version>${ruoyi.version}</version>
  176. </dependency>
  177. <!-- 缓存服务 -->
  178. <dependency>
  179. <groupId>com.ruoyi</groupId>
  180. <artifactId>ruoyi-common-redis</artifactId>
  181. <version>${ruoyi.version}</version>
  182. </dependency>
  183. <!-- 系统接口 -->
  184. <dependency>
  185. <groupId>com.ruoyi</groupId>
  186. <artifactId>ruoyi-api-system</artifactId>
  187. <version>${ruoyi.version}</version>
  188. </dependency>
  189. </dependencies>
  190. </dependencyManagement>
  191. <modules>
  192. <module>ruoyi-auth</module>
  193. <module>ruoyi-gateway</module>
  194. <!-- <module>ruoyi-visual</module>-->
  195. <module>ruoyi-modules</module>
  196. <module>ruoyi-api</module>
  197. <module>ruoyi-common</module>
  198. </modules>
  199. <packaging>pom</packaging>
  200. <dependencies>
  201. </dependencies>
  202. <build>
  203. <plugins>
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-compiler-plugin</artifactId>
  207. <configuration>
  208. <source>${java.version}</source>
  209. <target>${java.version}</target>
  210. <encoding>${project.build.sourceEncoding}</encoding>
  211. </configuration>
  212. </plugin>
  213. </plugins>
  214. </build>
  215. </project>