数字人管理平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

378 lines
14 KiB

  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.xueyi</groupId>
  7. <artifactId>xueyi</artifactId>
  8. <version>2.5.0</version>
  9. <name>xueyi</name>
  10. <url>https://xueyitt.cn</url>
  11. <description>雪忆管理系统</description>
  12. <properties>
  13. <xueyi.version>2.5.0</xueyi.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
  17. <java.version>17</java.version>
  18. <spring-boot.version>2.7.7</spring-boot.version>
  19. <spring-cloud.version>2021.0.5</spring-cloud.version>
  20. <spring-cloud-alibaba.version>2021.0.4.0</spring-cloud-alibaba.version>
  21. <spring-boot-admin.version>2.7.10</spring-boot-admin.version>
  22. <mybatis-plus.version>3.5.3</mybatis-plus.version>
  23. <pagehelper.version>5.3.2</pagehelper.version>
  24. <netty.version>4.1.67.Final</netty.version>
  25. <spring-doc.version>1.6.13</spring-doc.version>
  26. <tobato.version>1.27.2</tobato.version>
  27. <kaptcha.version>2.3.3</kaptcha.version>
  28. <druid.version>1.2.16</druid.version>
  29. <dynamic-ds.version>3.5.2</dynamic-ds.version>
  30. <commons.io.version>2.11.0</commons.io.version>
  31. <velocity.version>2.3</velocity.version>
  32. <fastjson2.version>2.0.24</fastjson2.version>
  33. <minio.version>8.2.2</minio.version>
  34. <poi.version>4.1.2</poi.version>
  35. <hutool.version>5.8.11</hutool.version>
  36. <jjwt.version>0.9.1</jjwt.version>
  37. <lombok.version>1.18.24</lombok.version>
  38. <mapstruct.version>1.5.3.Final</mapstruct.version>
  39. <lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
  40. <transmittable-thread-local.version>2.14.2</transmittable-thread-local.version>
  41. </properties>
  42. <!-- 依赖声明 -->
  43. <dependencyManagement>
  44. <dependencies>
  45. <!-- SpringCloud 微服务 -->
  46. <dependency>
  47. <groupId>org.springframework.cloud</groupId>
  48. <artifactId>spring-cloud-dependencies</artifactId>
  49. <version>${spring-cloud.version}</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. <!-- SpringCloud Alibaba 微服务 -->
  54. <dependency>
  55. <groupId>com.alibaba.cloud</groupId>
  56. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  57. <version>${spring-cloud-alibaba.version}</version>
  58. <type>pom</type>
  59. <scope>import</scope>
  60. </dependency>
  61. <!-- SpringBoot 依赖配置 -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-dependencies</artifactId>
  65. <version>${spring-boot.version}</version>
  66. <type>pom</type>
  67. <scope>import</scope>
  68. </dependency>
  69. <!-- FastDFS 分布式文件系统 -->
  70. <dependency>
  71. <groupId>com.github.tobato</groupId>
  72. <artifactId>fastdfs-client</artifactId>
  73. <version>${tobato.version}</version>
  74. </dependency>
  75. <!-- Mybatis-Plus 依赖配置 -->
  76. <dependency>
  77. <groupId>com.baomidou</groupId>
  78. <artifactId>mybatis-plus-boot-starter</artifactId>
  79. <version>${mybatis-plus.version}</version>
  80. </dependency>
  81. <!-- pageHelper 分页插件 -->
  82. <dependency>
  83. <groupId>com.github.pagehelper</groupId>
  84. <artifactId>pagehelper</artifactId>
  85. <version>${pagehelper.version}</version>
  86. <exclusions>
  87. <exclusion>
  88. <groupId>org.mybatis</groupId>
  89. <artifactId>mybatis</artifactId>
  90. </exclusion>
  91. <exclusion>
  92. <groupId>org.mybatis</groupId>
  93. <artifactId>mybatis-spring</artifactId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>com.github.jsqlparser</groupId>
  97. <artifactId>jsqlparser</artifactId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101. <!-- lombok -->
  102. <dependency>
  103. <groupId>org.projectlombok</groupId>
  104. <artifactId>lombok</artifactId>
  105. <version>${lombok.version}</version>
  106. </dependency>
  107. <!-- mapstruct 转换器 -->
  108. <dependency>
  109. <groupId>org.mapstruct</groupId>
  110. <artifactId>mapstruct</artifactId>
  111. <version>${mapstruct.version}</version>
  112. </dependency>
  113. <!-- 验证码 -->
  114. <dependency>
  115. <groupId>pro.fessional</groupId>
  116. <artifactId>kaptcha</artifactId>
  117. <version>${kaptcha.version}</version>
  118. </dependency>
  119. <!-- io常用工具类 -->
  120. <dependency>
  121. <groupId>commons-io</groupId>
  122. <artifactId>commons-io</artifactId>
  123. <version>${commons.io.version}</version>
  124. </dependency>
  125. <!-- excel工具 -->
  126. <dependency>
  127. <groupId>org.apache.poi</groupId>
  128. <artifactId>poi-ooxml</artifactId>
  129. <version>${poi.version}</version>
  130. </dependency>
  131. <!-- 代码生成使用模板 -->
  132. <dependency>
  133. <groupId>org.apache.velocity</groupId>
  134. <artifactId>velocity-engine-core</artifactId>
  135. <version>${velocity.version}</version>
  136. </dependency>
  137. <!-- JSON 解析器和生成器 -->
  138. <dependency>
  139. <groupId>com.alibaba.fastjson2</groupId>
  140. <artifactId>fastjson2</artifactId>
  141. <version>${fastjson2.version}</version>
  142. </dependency>
  143. <!-- JWT -->
  144. <dependency>
  145. <groupId>io.jsonwebtoken</groupId>
  146. <artifactId>jjwt</artifactId>
  147. <version>${jjwt.version}</version>
  148. </dependency>
  149. <!-- 线程传递值 -->
  150. <dependency>
  151. <groupId>com.alibaba</groupId>
  152. <artifactId>transmittable-thread-local</artifactId>
  153. <version>${transmittable-thread-local.version}</version>
  154. </dependency>
  155. <!-- 核心模块 -->
  156. <dependency>
  157. <groupId>com.xueyi</groupId>
  158. <artifactId>xueyi-common-core</artifactId>
  159. <version>${xueyi.version}</version>
  160. </dependency>
  161. <!-- 通信模块 -->
  162. <dependency>
  163. <groupId>com.xueyi</groupId>
  164. <artifactId>xueyi-common-web</artifactId>
  165. <version>${xueyi.version}</version>
  166. </dependency>
  167. <!-- 接口模块 -->
  168. <dependency>
  169. <groupId>com.xueyi</groupId>
  170. <artifactId>xueyi-common-swagger</artifactId>
  171. <version>${xueyi.version}</version>
  172. </dependency>
  173. <!-- 安全模块 -->
  174. <dependency>
  175. <groupId>com.xueyi</groupId>
  176. <artifactId>xueyi-common-security</artifactId>
  177. <version>${xueyi.version}</version>
  178. </dependency>
  179. <!-- 权限范围 -->
  180. <dependency>
  181. <groupId>com.xueyi</groupId>
  182. <artifactId>xueyi-common-datascope</artifactId>
  183. <version>${xueyi.version}</version>
  184. </dependency>
  185. <!-- 多数据源 -->
  186. <dependency>
  187. <groupId>com.xueyi</groupId>
  188. <artifactId>xueyi-common-datasource</artifactId>
  189. <version>${xueyi.version}</version>
  190. </dependency>
  191. <!-- 日志记录 -->
  192. <dependency>
  193. <groupId>com.xueyi</groupId>
  194. <artifactId>xueyi-common-log</artifactId>
  195. <version>${xueyi.version}</version>
  196. </dependency>
  197. <!-- 缓存管理 -->
  198. <dependency>
  199. <groupId>com.xueyi</groupId>
  200. <artifactId>xueyi-common-cache</artifactId>
  201. <version>${xueyi.version}</version>
  202. </dependency>
  203. <!-- 缓存服务 -->
  204. <dependency>
  205. <groupId>com.xueyi</groupId>
  206. <artifactId>xueyi-common-redis</artifactId>
  207. <version>${xueyi.version}</version>
  208. </dependency>
  209. <!-- 分布式事务 -->
  210. <dependency>
  211. <groupId>com.xueyi</groupId>
  212. <artifactId>xueyi-common-seata</artifactId>
  213. <version>${xueyi.version}</version>
  214. </dependency>
  215. <!-- 系统接口 -->
  216. <dependency>
  217. <groupId>com.xueyi</groupId>
  218. <artifactId>xueyi-api-system</artifactId>
  219. <version>${xueyi.version}</version>
  220. </dependency>
  221. <!-- 租管接口 -->
  222. <dependency>
  223. <groupId>com.xueyi</groupId>
  224. <artifactId>xueyi-api-tenant</artifactId>
  225. <version>${xueyi.version}</version>
  226. </dependency>
  227. <!-- 文件管理接口 -->
  228. <dependency>
  229. <groupId>com.xueyi</groupId>
  230. <artifactId>xueyi-api-file</artifactId>
  231. <version>${xueyi.version}</version>
  232. </dependency>
  233. <!-- 定时任务接口 -->
  234. <dependency>
  235. <groupId>com.xueyi</groupId>
  236. <artifactId>xueyi-api-job</artifactId>
  237. <version>${xueyi.version}</version>
  238. </dependency>
  239. <!-- huTool 工具类库 -->
  240. <dependency>
  241. <groupId>cn.hutool</groupId>
  242. <artifactId>hutool-bom</artifactId>
  243. <version>${hutool.version}</version>
  244. <type>pom</type>
  245. <scope>import</scope>
  246. </dependency>
  247. </dependencies>
  248. </dependencyManagement>
  249. <modules>
  250. <module>xueyi-auth</module>
  251. <module>xueyi-gateway</module>
  252. <module>xueyi-visual</module>
  253. <module>xueyi-modules</module>
  254. <module>xueyi-api</module>
  255. <module>xueyi-common</module>
  256. </modules>
  257. <packaging>pom</packaging>
  258. <dependencies>
  259. <!-- bootstrap 启动器 -->
  260. <dependency>
  261. <groupId>org.springframework.cloud</groupId>
  262. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  263. </dependency>
  264. </dependencies>
  265. <build>
  266. <plugins>
  267. <plugin>
  268. <groupId>org.apache.maven.plugins</groupId>
  269. <artifactId>maven-compiler-plugin</artifactId>
  270. <version>${maven-compiler-plugin.version}</version>
  271. <configuration>
  272. <source>${java.version}</source>
  273. <target>${java.version}</target>
  274. <annotationProcessorPaths>
  275. <path>
  276. <groupId>org.mapstruct</groupId>
  277. <artifactId>mapstruct-processor</artifactId>
  278. <version>${mapstruct.version}</version>
  279. </path>
  280. <path>
  281. <groupId>org.projectlombok</groupId>
  282. <artifactId>lombok</artifactId>
  283. <version>${lombok.version}</version>
  284. </path>
  285. <path>
  286. <groupId>org.projectlombok</groupId>
  287. <artifactId>lombok-mapstruct-binding</artifactId>
  288. <version>${lombok-mapstruct-binding.version}</version>
  289. </path>
  290. </annotationProcessorPaths>
  291. <encoding>${project.build.sourceEncoding}</encoding>
  292. </configuration>
  293. </plugin>
  294. </plugins>
  295. <pluginManagement>
  296. <plugins>
  297. <plugin>
  298. <groupId>org.springframework.boot</groupId>
  299. <artifactId>spring-boot-maven-plugin</artifactId>
  300. <version>${spring-boot.version}</version>
  301. <executions>
  302. <execution>
  303. <goals>
  304. <goal>repackage</goal>
  305. </goals>
  306. </execution>
  307. </executions>
  308. </plugin>
  309. </plugins>
  310. </pluginManagement>
  311. </build>
  312. <repositories>
  313. <repository>
  314. <id>public</id>
  315. <name>aliyun nexus</name>
  316. <url>https://maven.aliyun.com/repository/public</url>
  317. <releases>
  318. <enabled>true</enabled>
  319. </releases>
  320. </repository>
  321. </repositories>
  322. <pluginRepositories>
  323. <pluginRepository>
  324. <id>public</id>
  325. <name>aliyun nexus</name>
  326. <url>https://maven.aliyun.com/repository/public</url>
  327. <releases>
  328. <enabled>true</enabled>
  329. </releases>
  330. <snapshots>
  331. <enabled>false</enabled>
  332. </snapshots>
  333. </pluginRepository>
  334. </pluginRepositories>
  335. </project>