Compare commits

...

8 Commits

Author SHA1 Message Date
JW
668f28e357 Update maven-publish.yml 2023-08-22 17:29:30 +02:00
JW
b332c2f5d8 Update pom.xml 2023-08-22 17:27:57 +02:00
GitHub Action
5be113cbc8 Update version in pom.xml 2023-08-22 15:26:05 +00:00
JW
e0287aaa96 Update pom.xml 2023-08-22 17:24:52 +02:00
JW
8e2759cb1e Update maven-publish.yml 2023-08-22 17:23:32 +02:00
JW
fb9a48376b Update README.md 2023-08-22 14:24:20 +02:00
JW
3741351b7b Update README.md 2023-08-22 14:22:55 +02:00
GitHub Action
7eed221bab Update version in pom.xml 2023-08-22 11:55:25 +00:00
3 changed files with 37 additions and 3 deletions

View File

@@ -37,6 +37,8 @@ jobs:
- name: 2.7 Update version in pom.xml (Release only) - name: 2.7 Update version in pom.xml (Release only)
run: mvn versions:set -DnewVersion=${{steps.version.outputs.version_tag}} run: mvn versions:set -DnewVersion=${{steps.version.outputs.version_tag}}
- name: 2.8 Update modules parent version
run: mvn versions:update-parent -DallowSnapshots=true
- name: 3 Build with Maven - name: 3 Build with Maven
run: mvn package -P publish --file pom.xml run: mvn package -P publish --file pom.xml

View File

@@ -20,9 +20,41 @@ Do you prefer other programming languages?
## Getting started ## Getting started
1. Install the package via Maven 1. Install the package via Maven (dependecies will be simplify in future)
```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
``` ```
npm i tiktok-live-connector
```xml
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.24.1</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>com.github.jwdeveloper.TikTok-Live-Java</groupId>
<artifactId>API</artifactId>
<version>0.0.4-Release</version>
</dependency>
<dependency>
<groupId>com.github.jwdeveloper.TikTok-Live-Java</groupId>
<artifactId>Client</artifactId>
<version>0.0.4-Release</version>
</dependency>
``` ```
2. Create your first chat connection 2. Create your first chat connection