|
|
<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>
|
|
|
<packaging>jar</packaging>
|
|
|
<groupId>tech.ordinaryroad</groupId>
|
|
|
<artifactId>live-chat-client-example-handler</artifactId>
|
|
|
<version>0.7.0</version>
|
|
|
<name>live-chat-client-example-handler</name>
|
|
|
<description>live-chat-client-example-handler</description>
|
|
|
|
|
|
<properties>
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<lombok.version>1.18.28</lombok.version>
|
|
|
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>tech.ordinaryroad</groupId>
|
|
|
<artifactId>live-chat-client-bilibili</artifactId>
|
|
|
<!-- 参考github release版本,不需要前缀`v` -->
|
|
|
<version>0.7.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>tech.ordinaryroad</groupId>
|
|
|
<artifactId>live-chat-client-douyu</artifactId>
|
|
|
<!-- 参考github release版本,不需要前缀`v` -->
|
|
|
<version>0.7.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>${lombok.version}</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<finalName>ordinaryroad-bilibili-live-chat-example-handler</finalName>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
<configuration>
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
<annotationProcessorPaths>
|
|
|
<path>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>${lombok.version}</version>
|
|
|
</path>
|
|
|
</annotationProcessorPaths>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
</project>
|