pom.xml 7.9 KB

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