pom.xml 8.6 KB

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