pom.xml 9.5 KB

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