数字人管理平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

440 lignes
16 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. <sonar.java.spotbugs.reportPaths>./target/findbugsXml.xml</sonar.java.spotbugs.reportPaths>
  42. <sonar.java.pmd.reportPaths>./target/pmd.xml</sonar.java.pmd.reportPaths>
  43. <sonar.java.checkstyle.reportPaths>./target/checkstyle-result.xml</sonar.java.checkstyle.reportPaths>
  44. <sonar.login>admin</sonar.login>
  45. <sonar.password>Digimeta@2023</sonar.password>
  46. </properties>
  47. <!-- 依赖声明 -->
  48. <dependencyManagement>
  49. <dependencies>
  50. <!-- SpringCloud 微服务 -->
  51. <dependency>
  52. <groupId>org.springframework.cloud</groupId>
  53. <artifactId>spring-cloud-dependencies</artifactId>
  54. <version>${spring-cloud.version}</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. <!-- SpringCloud Alibaba 微服务 -->
  59. <dependency>
  60. <groupId>com.alibaba.cloud</groupId>
  61. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  62. <version>${spring-cloud-alibaba.version}</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. <!-- SpringBoot 依赖配置 -->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-dependencies</artifactId>
  70. <version>${spring-boot.version}</version>
  71. <type>pom</type>
  72. <scope>import</scope>
  73. </dependency>
  74. <!-- FastDFS 分布式文件系统 -->
  75. <dependency>
  76. <groupId>com.github.tobato</groupId>
  77. <artifactId>fastdfs-client</artifactId>
  78. <version>${tobato.version}</version>
  79. </dependency>
  80. <!-- Mybatis-Plus 依赖配置 -->
  81. <dependency>
  82. <groupId>com.baomidou</groupId>
  83. <artifactId>mybatis-plus-boot-starter</artifactId>
  84. <version>${mybatis-plus.version}</version>
  85. </dependency>
  86. <!-- pageHelper 分页插件 -->
  87. <dependency>
  88. <groupId>com.github.pagehelper</groupId>
  89. <artifactId>pagehelper</artifactId>
  90. <version>${pagehelper.version}</version>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>org.mybatis</groupId>
  94. <artifactId>mybatis</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>org.mybatis</groupId>
  98. <artifactId>mybatis-spring</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>com.github.jsqlparser</groupId>
  102. <artifactId>jsqlparser</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <!-- lombok -->
  107. <dependency>
  108. <groupId>org.projectlombok</groupId>
  109. <artifactId>lombok</artifactId>
  110. <version>${lombok.version}</version>
  111. </dependency>
  112. <!-- mapstruct 转换器 -->
  113. <dependency>
  114. <groupId>org.mapstruct</groupId>
  115. <artifactId>mapstruct</artifactId>
  116. <version>${mapstruct.version}</version>
  117. </dependency>
  118. <!-- 验证码 -->
  119. <dependency>
  120. <groupId>pro.fessional</groupId>
  121. <artifactId>kaptcha</artifactId>
  122. <version>${kaptcha.version}</version>
  123. </dependency>
  124. <!-- io常用工具类 -->
  125. <dependency>
  126. <groupId>commons-io</groupId>
  127. <artifactId>commons-io</artifactId>
  128. <version>${commons.io.version}</version>
  129. </dependency>
  130. <!-- excel工具 -->
  131. <dependency>
  132. <groupId>org.apache.poi</groupId>
  133. <artifactId>poi-ooxml</artifactId>
  134. <version>${poi.version}</version>
  135. </dependency>
  136. <!-- 代码生成使用模板 -->
  137. <dependency>
  138. <groupId>org.apache.velocity</groupId>
  139. <artifactId>velocity-engine-core</artifactId>
  140. <version>${velocity.version}</version>
  141. </dependency>
  142. <!-- JSON 解析器和生成器 -->
  143. <dependency>
  144. <groupId>com.alibaba.fastjson2</groupId>
  145. <artifactId>fastjson2</artifactId>
  146. <version>${fastjson2.version}</version>
  147. </dependency>
  148. <!-- JWT -->
  149. <dependency>
  150. <groupId>io.jsonwebtoken</groupId>
  151. <artifactId>jjwt</artifactId>
  152. <version>${jjwt.version}</version>
  153. </dependency>
  154. <!-- 线程传递值 -->
  155. <dependency>
  156. <groupId>com.alibaba</groupId>
  157. <artifactId>transmittable-thread-local</artifactId>
  158. <version>${transmittable-thread-local.version}</version>
  159. </dependency>
  160. <!-- 核心模块 -->
  161. <dependency>
  162. <groupId>com.xueyi</groupId>
  163. <artifactId>xueyi-common-core</artifactId>
  164. <version>${xueyi.version}</version>
  165. </dependency>
  166. <!-- 通信模块 -->
  167. <dependency>
  168. <groupId>com.xueyi</groupId>
  169. <artifactId>xueyi-common-web</artifactId>
  170. <version>${xueyi.version}</version>
  171. </dependency>
  172. <!-- 接口模块 -->
  173. <dependency>
  174. <groupId>com.xueyi</groupId>
  175. <artifactId>xueyi-common-swagger</artifactId>
  176. <version>${xueyi.version}</version>
  177. </dependency>
  178. <!-- 安全模块 -->
  179. <dependency>
  180. <groupId>com.xueyi</groupId>
  181. <artifactId>xueyi-common-security</artifactId>
  182. <version>${xueyi.version}</version>
  183. </dependency>
  184. <!-- 权限范围 -->
  185. <dependency>
  186. <groupId>com.xueyi</groupId>
  187. <artifactId>xueyi-common-datascope</artifactId>
  188. <version>${xueyi.version}</version>
  189. </dependency>
  190. <!-- 多数据源 -->
  191. <dependency>
  192. <groupId>com.xueyi</groupId>
  193. <artifactId>xueyi-common-datasource</artifactId>
  194. <version>${xueyi.version}</version>
  195. </dependency>
  196. <!-- 日志记录 -->
  197. <dependency>
  198. <groupId>com.xueyi</groupId>
  199. <artifactId>xueyi-common-log</artifactId>
  200. <version>${xueyi.version}</version>
  201. </dependency>
  202. <!-- 缓存管理 -->
  203. <dependency>
  204. <groupId>com.xueyi</groupId>
  205. <artifactId>xueyi-common-cache</artifactId>
  206. <version>${xueyi.version}</version>
  207. </dependency>
  208. <!-- 缓存服务 -->
  209. <dependency>
  210. <groupId>com.xueyi</groupId>
  211. <artifactId>xueyi-common-redis</artifactId>
  212. <version>${xueyi.version}</version>
  213. </dependency>
  214. <!-- Mqtt服务 -->
  215. <dependency>
  216. <groupId>com.xueyi</groupId>
  217. <artifactId>xueyi-common-mqtt</artifactId>
  218. <version>${xueyi.version}</version>
  219. </dependency>
  220. <!-- 分布式事务 -->
  221. <dependency>
  222. <groupId>com.xueyi</groupId>
  223. <artifactId>xueyi-common-seata</artifactId>
  224. <version>${xueyi.version}</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>com.xueyi</groupId>
  228. <artifactId>xueyi-common-sms</artifactId>
  229. <version>${xueyi.version}</version>
  230. </dependency>
  231. <!-- 系统接口 -->
  232. <dependency>
  233. <groupId>com.xueyi</groupId>
  234. <artifactId>xueyi-api-system</artifactId>
  235. <version>${xueyi.version}</version>
  236. </dependency>
  237. <!-- 租管接口 -->
  238. <dependency>
  239. <groupId>com.xueyi</groupId>
  240. <artifactId>xueyi-api-tenant</artifactId>
  241. <version>${xueyi.version}</version>
  242. </dependency>
  243. <!-- 文件管理接口 -->
  244. <dependency>
  245. <groupId>com.xueyi</groupId>
  246. <artifactId>xueyi-api-file</artifactId>
  247. <version>${xueyi.version}</version>
  248. </dependency>
  249. <!-- 定时任务接口 -->
  250. <dependency>
  251. <groupId>com.xueyi</groupId>
  252. <artifactId>xueyi-api-job</artifactId>
  253. <version>${xueyi.version}</version>
  254. </dependency>
  255. <!-- 消息管理接口 -->
  256. <dependency>
  257. <groupId>com.xueyi</groupId>
  258. <artifactId>xueyi-api-message</artifactId>
  259. <version>${xueyi.version}</version>
  260. </dependency>
  261. <!-- huTool 工具类库 -->
  262. <dependency>
  263. <groupId>cn.hutool</groupId>
  264. <artifactId>hutool-bom</artifactId>
  265. <version>${hutool.version}</version>
  266. <type>pom</type>
  267. <scope>import</scope>
  268. </dependency>
  269. </dependencies>
  270. </dependencyManagement>
  271. <modules>
  272. <module>xueyi-auth</module>
  273. <module>xueyi-gateway</module>
  274. <module>xueyi-visual</module>
  275. <module>xueyi-modules</module>
  276. <module>xueyi-api</module>
  277. <module>xueyi-common</module>
  278. </modules>
  279. <packaging>pom</packaging>
  280. <dependencies>
  281. <!-- bootstrap 启动器 -->
  282. <dependency>
  283. <groupId>org.springframework.cloud</groupId>
  284. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  285. </dependency>
  286. </dependencies>
  287. <profiles>
  288. <profile>
  289. <id>dev</id>
  290. <properties>
  291. <!-- 环境标识,需要与配置文件的名称相对应 -->
  292. <activatedProperties>dev</activatedProperties>
  293. <nacos.host>39.107.77.235</nacos.host>
  294. <nacos.port>18848</nacos.port>
  295. <nacos.namespace>6d0ee265-2a92-44cc-a6de-f34b3ea104e6</nacos.namespace>
  296. </properties>
  297. <activation>
  298. <!-- 默认环境 -->
  299. <activeByDefault>true</activeByDefault>
  300. </activation>
  301. </profile>
  302. <profile>
  303. <id>test</id>
  304. <properties>
  305. <!-- 环境标识,需要与配置文件的名称相对应 -->
  306. <activatedProperties>test</activatedProperties>
  307. <nacos.host>172.17.0.1</nacos.host>
  308. <nacos.port>18848</nacos.port>
  309. <nacos.namespace></nacos.namespace>
  310. </properties>
  311. </profile>
  312. <profile>
  313. <id>prod</id>
  314. <properties>
  315. <!-- 环境标识,需要与配置文件的名称相对应 -->
  316. <activatedProperties>prod</activatedProperties>
  317. <nacos.host>172.17.0.1</nacos.host>
  318. <nacos.port>18848</nacos.port>
  319. <nacos.namespace></nacos.namespace>
  320. </properties>
  321. </profile>
  322. </profiles>
  323. <build>
  324. <plugins>
  325. <plugin>
  326. <groupId>org.apache.maven.plugins</groupId>
  327. <artifactId>maven-compiler-plugin</artifactId>
  328. <version>${maven-compiler-plugin.version}</version>
  329. <configuration>
  330. <source>${java.version}</source>
  331. <target>${java.version}</target>
  332. <annotationProcessorPaths>
  333. <path>
  334. <groupId>org.mapstruct</groupId>
  335. <artifactId>mapstruct-processor</artifactId>
  336. <version>${mapstruct.version}</version>
  337. </path>
  338. <path>
  339. <groupId>org.projectlombok</groupId>
  340. <artifactId>lombok</artifactId>
  341. <version>${lombok.version}</version>
  342. </path>
  343. <path>
  344. <groupId>org.projectlombok</groupId>
  345. <artifactId>lombok-mapstruct-binding</artifactId>
  346. <version>${lombok-mapstruct-binding.version}</version>
  347. </path>
  348. </annotationProcessorPaths>
  349. <encoding>${project.build.sourceEncoding}</encoding>
  350. </configuration>
  351. </plugin>
  352. </plugins>
  353. <pluginManagement>
  354. <plugins>
  355. <plugin>
  356. <groupId>org.springframework.boot</groupId>
  357. <artifactId>spring-boot-maven-plugin</artifactId>
  358. <version>${spring-boot.version}</version>
  359. <executions>
  360. <execution>
  361. <goals>
  362. <goal>repackage</goal>
  363. </goals>
  364. </execution>
  365. </executions>
  366. </plugin>
  367. </plugins>
  368. </pluginManagement>
  369. </build>
  370. <repositories>
  371. <repository>
  372. <id>public</id>
  373. <name>aliyun nexus</name>
  374. <url>https://maven.aliyun.com/repository/public</url>
  375. <releases>
  376. <enabled>true</enabled>
  377. </releases>
  378. </repository>
  379. </repositories>
  380. <pluginRepositories>
  381. <pluginRepository>
  382. <id>public</id>
  383. <name>aliyun nexus</name>
  384. <url>https://maven.aliyun.com/repository/public</url>
  385. <releases>
  386. <enabled>true</enabled>
  387. </releases>
  388. <snapshots>
  389. <enabled>false</enabled>
  390. </snapshots>
  391. </pluginRepository>
  392. </pluginRepositories>
  393. </project>