pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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.5</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.8.5</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.16</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <kaptcha.version>2.3.3</kaptcha.version>
  21. <pagehelper.boot.version>1.4.6</pagehelper.boot.version>
  22. <fastjson.version>2.0.25</fastjson.version>
  23. <oshi.version>6.4.0</oshi.version>
  24. <commons.io.version>2.11.0</commons.io.version>
  25. <commons.collections.version>3.2.2</commons.collections.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.14</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. <!-- io常用工具类 -->
  66. <dependency>
  67. <groupId>commons-io</groupId>
  68. <artifactId>commons-io</artifactId>
  69. <version>${commons.io.version}</version>
  70. </dependency>
  71. <!-- excel工具 -->
  72. <dependency>
  73. <groupId>org.apache.poi</groupId>
  74. <artifactId>poi-ooxml</artifactId>
  75. <version>${poi.version}</version>
  76. </dependency>
  77. <!-- velocity代码生成使用模板 -->
  78. <dependency>
  79. <groupId>org.apache.velocity</groupId>
  80. <artifactId>velocity-engine-core</artifactId>
  81. <version>${velocity.version}</version>
  82. </dependency>
  83. <!-- collections工具类 -->
  84. <dependency>
  85. <groupId>commons-collections</groupId>
  86. <artifactId>commons-collections</artifactId>
  87. <version>${commons.collections.version}</version>
  88. </dependency>
  89. <!-- 阿里JSON解析器 -->
  90. <dependency>
  91. <groupId>com.alibaba.fastjson2</groupId>
  92. <artifactId>fastjson2</artifactId>
  93. <version>${fastjson.version}</version>
  94. </dependency>
  95. <!-- Token生成与解析-->
  96. <dependency>
  97. <groupId>io.jsonwebtoken</groupId>
  98. <artifactId>jjwt</artifactId>
  99. <version>${jwt.version}</version>
  100. </dependency>
  101. <!-- 验证码 -->
  102. <dependency>
  103. <groupId>pro.fessional</groupId>
  104. <artifactId>kaptcha</artifactId>
  105. <version>${kaptcha.version}</version>
  106. </dependency>
  107. <!-- 定时任务-->
  108. <dependency>
  109. <groupId>com.ruoyi</groupId>
  110. <artifactId>ruoyi-quartz</artifactId>
  111. <version>${ruoyi.version}</version>
  112. </dependency>
  113. <!-- 代码生成-->
  114. <dependency>
  115. <groupId>com.ruoyi</groupId>
  116. <artifactId>ruoyi-generator</artifactId>
  117. <version>${ruoyi.version}</version>
  118. </dependency>
  119. <!-- 核心模块-->
  120. <dependency>
  121. <groupId>com.ruoyi</groupId>
  122. <artifactId>ruoyi-framework</artifactId>
  123. <version>${ruoyi.version}</version>
  124. </dependency>
  125. <!-- 系统模块-->
  126. <dependency>
  127. <groupId>com.ruoyi</groupId>
  128. <artifactId>ruoyi-system</artifactId>
  129. <version>${ruoyi.version}</version>
  130. </dependency>
  131. <!-- 通用工具-->
  132. <dependency>
  133. <groupId>com.ruoyi</groupId>
  134. <artifactId>ruoyi-common</artifactId>
  135. <version>${ruoyi.version}</version>
  136. </dependency>
  137. </dependencies>
  138. </dependencyManagement>
  139. <modules>
  140. <module>ruoyi-admin</module>
  141. <module>ruoyi-framework</module>
  142. <module>ruoyi-system</module>
  143. <module>ruoyi-quartz</module>
  144. <module>ruoyi-generator</module>
  145. <module>ruoyi-common</module>
  146. </modules>
  147. <packaging>pom</packaging>
  148. <build>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.apache.maven.plugins</groupId>
  152. <artifactId>maven-compiler-plugin</artifactId>
  153. <version>3.1</version>
  154. <configuration>
  155. <source>${java.version}</source>
  156. <target>${java.version}</target>
  157. <encoding>${project.build.sourceEncoding}</encoding>
  158. </configuration>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. <repositories>
  163. <repository>
  164. <id>public</id>
  165. <name>aliyun nexus</name>
  166. <url>https://maven.aliyun.com/repository/public</url>
  167. <releases>
  168. <enabled>true</enabled>
  169. </releases>
  170. </repository>
  171. </repositories>
  172. <pluginRepositories>
  173. <pluginRepository>
  174. <id>public</id>
  175. <name>aliyun nexus</name>
  176. <url>https://maven.aliyun.com/repository/public</url>
  177. <releases>
  178. <enabled>true</enabled>
  179. </releases>
  180. <snapshots>
  181. <enabled>false</enabled>
  182. </snapshots>
  183. </pluginRepository>
  184. </pluginRepositories>
  185. </project>