pom.xml 7.7 KB

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