- Fixed bug: library was not working on certain java versions
   due to different WebSocket implementation. Instead of using java websocket api now there is `org.java-websocket`
This commit is contained in:
JW
2023-08-24 16:36:40 +02:00
parent 44ba999b83
commit 15d6351d65
6 changed files with 74 additions and 57 deletions

View File

@@ -54,6 +54,7 @@
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>all</shadedClassifierName>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
<artifactSet>
<includes>
@@ -64,8 +65,6 @@
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>**/proto/**</exclude>
<exclude>**/google/**</exclude>
<exclude>**/tiktokSchema.proto/**</exclude>
</excludes>
</filter>
@@ -99,6 +98,8 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>