mirror of
https://github.com/jwdeveloper/TikTokLiveJava.git
synced 2026-02-28 09:19:40 -05:00
Compare commits
17 Commits
0.0.3-Rele
...
0.0.8-Rele
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
32cb1e0d8f | ||
|
|
3210707bce | ||
|
|
e7f9d6e9d5 | ||
|
|
03001d607d | ||
|
|
cbabad0888 | ||
|
|
09c531e9f4 | ||
|
|
997c8d399e | ||
|
|
668f28e357 | ||
|
|
b332c2f5d8 | ||
|
|
5be113cbc8 | ||
|
|
e0287aaa96 | ||
|
|
8e2759cb1e | ||
|
|
fb9a48376b | ||
|
|
3741351b7b | ||
|
|
7eed221bab | ||
|
|
e6089a99a1 | ||
|
|
7e77b06b93 |
5
.github/workflows/maven-publish.yml
vendored
5
.github/workflows/maven-publish.yml
vendored
@@ -34,7 +34,6 @@ jobs:
|
|||||||
bump_each_commit: false
|
bump_each_commit: false
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- 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}}
|
||||||
|
|
||||||
@@ -74,6 +73,10 @@ jobs:
|
|||||||
git config --local user.email "action@github.com"
|
git config --local user.email "action@github.com"
|
||||||
git config --local user.name "GitHub Action"
|
git config --local user.name "GitHub Action"
|
||||||
git add pom.xml
|
git add pom.xml
|
||||||
|
git add API/pom.xml
|
||||||
|
git add Client/pom.xml
|
||||||
|
git add TestApplication/pom.xml
|
||||||
|
git add Tools/pom.xml
|
||||||
git commit -m "Update version in pom.xml"
|
git commit -m "Update version in pom.xml"
|
||||||
- name: Push changes
|
- name: Push changes
|
||||||
uses: ad-m/github-push-action@master
|
uses: ad-m/github-push-action@master
|
||||||
|
|||||||
36
README.md
36
README.md
@@ -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
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ if [ "$JV" != 16 ]; then
|
|||||||
curl -s "https://get.sdkman.io" | bash
|
curl -s "https://get.sdkman.io" | bash
|
||||||
source ~/.sdkman/bin/sdkman-init.sh
|
source ~/.sdkman/bin/sdkman-init.sh
|
||||||
sdk version
|
sdk version
|
||||||
sdk install java 16.0.1-adpt
|
sdk install java 16.0.2-open
|
||||||
;;
|
;;
|
||||||
use)
|
use)
|
||||||
echo "must source ~/.sdkman/bin/sdkman-init.sh"
|
echo "must source ~/.sdkman/bin/sdkman-init.sh"
|
||||||
|
|||||||
@@ -2,10 +2,9 @@ jdk:
|
|||||||
- openjdk16
|
- openjdk16
|
||||||
before_install:
|
before_install:
|
||||||
- echo "Before Install"
|
- echo "Before Install"
|
||||||
- ./ensure-java-16 install
|
- bash ensure-java-16 install
|
||||||
install:
|
install:
|
||||||
- echo "Install"
|
- echo "Install"
|
||||||
- if ! ./ensure-java-16 use; then source ~/.sdkman/bin/sdkman-init.sh; fi
|
- if ! bash ensure-java-16 use; then source ~/.sdkman/bin/sdkman-init.sh; fi
|
||||||
- java -version
|
- java -version
|
||||||
|
- mvn install
|
||||||
# Thanks to https://github.com/jitpack/jitpack.io/issues/4355#issuecomment-744678253
|
|
||||||
Reference in New Issue
Block a user