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

141 lines
4.4 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-message</artifactId>
  12. <description>
  13. xueyi-modules-message消息管理模块
  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. <!-- SpringBoot Mqtt -->
  37. <dependency>
  38. <groupId>org.springframework.integration</groupId>
  39. <artifactId>spring-integration-mqtt</artifactId>
  40. <version>5.5.14</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.corundumstudio.socketio</groupId>
  44. <artifactId>netty-socketio</artifactId>
  45. <version>1.7.13</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.socket</groupId>
  49. <artifactId>socket.io-client</artifactId>
  50. <version>1.0.0</version>
  51. </dependency>
  52. <!-- XueYi Common Log -->
  53. <dependency>
  54. <groupId>com.xueyi</groupId>
  55. <artifactId>xueyi-common-log</artifactId>
  56. </dependency>
  57. <!-- XueYi Common Web -->
  58. <dependency>
  59. <groupId>com.xueyi</groupId>
  60. <artifactId>xueyi-common-web</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.xueyi</groupId>
  64. <artifactId>xueyi-common-mqtt</artifactId>
  65. <version>2.5.0</version>
  66. </dependency>
  67. <!-- XueYi Common Swagger -->
  68. <dependency>
  69. <groupId>com.xueyi</groupId>
  70. <artifactId>xueyi-common-swagger</artifactId>
  71. </dependency>
  72. <!-- XueYi Common mqtt -->
  73. <dependency>
  74. <groupId>com.xueyi</groupId>
  75. <artifactId>xueyi-common-mqtt</artifactId>
  76. </dependency>
  77. <!-- XueYi Api File -->
  78. <dependency>
  79. <groupId>com.xueyi</groupId>
  80. <artifactId>xueyi-api-file</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.xueyi</groupId>
  84. <artifactId>xueyi-api-system</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.xueyi</groupId>
  88. <artifactId>xueyi-api-nlt</artifactId>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <finalName>${project.artifactId}</finalName>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <executions>
  98. <execution>
  99. <goals>
  100. <goal>repackage</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. <plugin>
  106. <artifactId>maven-resources-plugin</artifactId>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <configuration>
  109. <delimiters>@</delimiters>
  110. <useDefaultDelimiters>false</useDefaultDelimiters>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. <resources>
  115. <resource>
  116. <directory>src/main/resources</directory>
  117. <filtering>true</filtering>
  118. </resource>
  119. </resources>
  120. </build>
  121. </project>