pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.ruoyi</groupId>
  6. <artifactId>ruoyi-common</artifactId>
  7. <version>${revision}</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <packaging>pom</packaging>
  11. <artifactId>ruoyi-common-live</artifactId>
  12. <description>
  13. AI直播
  14. </description>
  15. <modules>
  16. <module>live-chat-client-commons</module>
  17. <module>live-chat-client-servers</module>
  18. <module>live-chat-clients</module>
  19. </modules>
  20. <properties>
  21. <maven.compiler.source>8</maven.compiler.source>
  22. <maven.compiler.target>8</maven.compiler.target>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
  25. <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
  26. <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
  27. <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
  28. <brotli4j.version>1.13.0</brotli4j.version>
  29. <jackson-databind.version>2.16.0</jackson-databind.version>
  30. <hutool-all.version>5.8.35</hutool-all.version>
  31. <netty-all.version>4.1.104.Final</netty-all.version>
  32. <logback-classic.version>1.4.12</logback-classic.version>
  33. <lombok.version>1.18.30</lombok.version>
  34. <junit-jupiter.version>5.10.1</junit-jupiter.version>
  35. <protobuf-java-util.version>3.25.1</protobuf-java-util.version>
  36. <tars-core.version>1.7.3</tars-core.version>
  37. </properties>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.ruoyi</groupId>
  42. <artifactId>live-chat-client-commons-base</artifactId>
  43. <version>1.0.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.ruoyi</groupId>
  47. <artifactId>live-chat-client-commons-util</artifactId>
  48. <version>1.0.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.ruoyi</groupId>
  52. <artifactId>live-chat-client-commons-client</artifactId>
  53. <version>1.0.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.ruoyi</groupId>
  57. <artifactId>live-chat-client-servers-netty</artifactId>
  58. <version>1.0.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.ruoyi</groupId>
  62. <artifactId>live-chat-client-servers-netty-client</artifactId>
  63. <version>1.0.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.ruoyi</groupId>
  67. <artifactId>live-chat-client-bilibili</artifactId>
  68. <version>1.0.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.ruoyi</groupId>
  72. <artifactId>live-chat-client-douyu</artifactId>
  73. <version>1.0.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.ruoyi</groupId>
  77. <artifactId>live-chat-client-huya</artifactId>
  78. <version>1.0.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.ruoyi</groupId>
  82. <artifactId>live-chat-client-douyin</artifactId>
  83. <version>1.0.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.ruoyi</groupId>
  87. <artifactId>live-chat-client-kuaishou</artifactId>
  88. <version>1.0.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.aayushatharva.brotli4j</groupId>
  92. <artifactId>brotli4j</artifactId>
  93. <version>${brotli4j.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.google.protobuf</groupId>
  97. <artifactId>protobuf-java-util</artifactId>
  98. <version>${protobuf-java-util.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.fasterxml.jackson.core</groupId>
  102. <artifactId>jackson-databind</artifactId>
  103. <version>${jackson-databind.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>cn.hutool</groupId>
  107. <artifactId>hutool-all</artifactId>
  108. <version>${hutool-all.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>io.netty</groupId>
  112. <artifactId>netty-all</artifactId>
  113. <version>${netty-all.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.tencent.tars</groupId>
  117. <artifactId>tars-core</artifactId>
  118. <version>${tars-core.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>ch.qos.logback</groupId>
  122. <artifactId>logback-classic</artifactId>
  123. <version>${logback-classic.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.projectlombok</groupId>
  127. <artifactId>lombok</artifactId>
  128. <version>${lombok.version}</version>
  129. <scope>compile</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.junit.jupiter</groupId>
  133. <artifactId>junit-jupiter</artifactId>
  134. <version>${junit-jupiter.version}</version>
  135. <scope>test</scope>
  136. </dependency>
  137. </dependencies>
  138. </dependencyManagement>
  139. <dependencies>
  140. <dependency>
  141. <groupId>org.projectlombok</groupId>
  142. <artifactId>lombok</artifactId>
  143. <scope>provided</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.squareup.okhttp3</groupId>
  147. <artifactId>okhttp</artifactId>
  148. <version>4.10.0</version>
  149. </dependency>
  150. </dependencies>
  151. </project>