| 123456789101112131415161718192021222324252627282930313233343536373839404142 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0</modelVersion>    <parent>        <groupId>org.ruoyi</groupId>        <artifactId>live-chat-clients</artifactId>        <version>${revision}</version>        <relativePath>../pom.xml</relativePath>    </parent>    <packaging>jar</packaging>    <artifactId>live-chat-client-douyin</artifactId>    <name>live-chat-client-douyin</name>    <properties>        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    </properties>    <dependencies>        <dependency>            <groupId>org.ruoyi</groupId>            <artifactId>live-chat-client-servers-netty-client</artifactId>        </dependency>        <dependency>            <groupId>com.google.protobuf</groupId>            <artifactId>protobuf-java-util</artifactId>        </dependency>        <dependency>            <groupId>ch.qos.logback</groupId>            <artifactId>logback-classic</artifactId>        </dependency>        <dependency>            <groupId>org.junit.jupiter</groupId>            <artifactId>junit-jupiter</artifactId>            <version>${junit-jupiter.version}</version>            <scope>test</scope>        </dependency>    </dependencies></project>
 |