数字人管理平台
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.
 
 
 
 
 
 

122 lines
3.6 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.xueyi</groupId>
  7. <artifactId>xueyi-modules</artifactId>
  8. <version>2.5.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>xueyi-modules-system</artifactId>
  12. <description>
  13. xueyi-modules-system系统模块
  14. </description>
  15. <dependencies>
  16. <!-- SpringCloud Alibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <!-- SpringCloud Alibaba Nacos Config -->
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. </dependency>
  26. <!-- SpringCloud Alibaba Sentinel -->
  27. <dependency>
  28. <groupId>com.alibaba.cloud</groupId>
  29. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  30. </dependency>
  31. <!-- SpringBoot Actuator -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-actuator</artifactId>
  35. </dependency>
  36. <!-- XueYi Common Log -->
  37. <dependency>
  38. <groupId>com.xueyi</groupId>
  39. <artifactId>xueyi-common-log</artifactId>
  40. </dependency>
  41. <!-- XueYi Common Web -->
  42. <dependency>
  43. <groupId>com.xueyi</groupId>
  44. <artifactId>xueyi-common-web</artifactId>
  45. </dependency>
  46. <!-- XueYi Common Swagger -->
  47. <dependency>
  48. <groupId>com.xueyi</groupId>
  49. <artifactId>xueyi-common-swagger</artifactId>
  50. </dependency>
  51. <!-- XueYi Api File -->
  52. <dependency>
  53. <groupId>com.xueyi</groupId>
  54. <artifactId>xueyi-api-file</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.xueyi</groupId>
  58. <artifactId>xueyi-api-message</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.xueyi</groupId>
  62. <artifactId>xueyi-common-sms</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.xueyi</groupId>
  66. <artifactId>xueyi-common-mqtt</artifactId>
  67. <version>2.5.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.konghq</groupId>
  71. <artifactId>unirest-java</artifactId>
  72. <version>3.7.04</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-codec</groupId>
  76. <artifactId>commons-codec</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>net.coobird</groupId>
  80. <artifactId>thumbnailator</artifactId>
  81. <version>0.4.8</version>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <finalName>${project.artifactId}</finalName>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. <executions>
  91. <execution>
  92. <goals>
  93. <goal>repackage</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>