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.
103 lines
3.6 KiB
103 lines
3.6 KiB
<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>tech.ordinaryroad</groupId>
|
|
<artifactId>live-chat-client-codec</artifactId>
|
|
<version>0.7.0</version>
|
|
</parent>
|
|
<packaging>jar</packaging>
|
|
|
|
<artifactId>live-chat-client-codec-douyin</artifactId>
|
|
<name>live-chat-client-codec-douyin</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>tech.ordinaryroad</groupId>
|
|
<artifactId>live-chat-client-commons-base</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>tech.ordinaryroad</groupId>
|
|
<artifactId>live-chat-client-commons-util</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-codec</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.graalvm.js</groupId>
|
|
<artifactId>js</artifactId>
|
|
<version>21.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>${junit-jupiter.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.httpcomponents.client5</groupId>-->
|
|
<!-- <artifactId>httpclient5</artifactId>-->
|
|
<!-- <version>5.1</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- HttpClient -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
<artifactId>httpclient5</artifactId>
|
|
<version>5.1</version>
|
|
</dependency>
|
|
<!-- GraalVM JavaScript -->
|
|
<dependency>
|
|
<groupId>org.graalvm.sdk</groupId>
|
|
<artifactId>graal-sdk</artifactId>
|
|
<version>20.3.0</version> <!-- 使用你安装的 GraalVM 版本 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.graalvm.js</groupId>
|
|
<artifactId>js</artifactId>
|
|
<version>20.3.0</version> <!-- 使用你安装的 GraalVM 版本 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.graalvm.js</groupId>
|
|
<artifactId>js-scriptengine</artifactId>
|
|
<version>20.3.0</version> <!-- 使用你安装的 GraalVM 版本 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>5.2.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>edu.stanford.nlp</groupId>
|
|
<artifactId>stanford-corenlp</artifactId>
|
|
<version>4.5.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>edu.stanford.nlp</groupId>
|
|
<artifactId>stanford-corenlp</artifactId>
|
|
<version>4.5.1</version>
|
|
<classifier>models</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|