Prepare tester extension

This commit is contained in:
JW
2024-02-25 21:34:38 +01:00
parent 0fcac60cbe
commit 3e52523644
4 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
package io.github.jwdeveloper.tiktok;
public class testerExample {
}

29
extension-tester/pom.xml Normal file
View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>io.github.jwdeveloper.tiktok</groupId>
<artifactId>TikTokLiveJava</artifactId>
<version>1.3.0-Release</version>
</parent>
<groupId>io.github.jwdeveloper.worker</groupId>
<artifactId>extension-tester</artifactId>
<properties>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>io.github.jwdeveloper.tiktok</groupId>
<artifactId>Client</artifactId>
<version>1.3.0-Release</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,9 @@
package io.github.jwdeveloper.tiktok.extension.tester;
import io.github.jwdeveloper.tiktok.live.LiveClient;
public class TikTokLiveTester {
public static LiveClient createFakeClient() {
throw new RuntimeException("Not implemented");
}
}

View File

@@ -18,6 +18,7 @@
<module>extension-recorder</module>
<module>extension-collector</module>
<module>extension-tester</module>
</modules>
<properties>