File tree Expand file tree Collapse file tree 3 files changed +32
-3
lines changed Expand file tree Collapse file tree 3 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 1+ name : Javadoc
2+ on :
3+ push :
4+ branches :
5+ - master
6+ jobs :
7+ javadoc :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Checkout
11+ uses : actions/checkout@v2
12+ with :
13+ persist-credentials : false
14+ - name : Set up JDK
15+ uses : actions/setup-java@081536e
16+ with :
17+ java-version : 8
18+ - name : Set up Node.js 12
19+ uses : actions/setup-node@8de2f9f
20+ with :
21+ node-version : 12
22+ - name : Generate doc
23+ run : gradle javadoc
24+ - name : Deploy
25+ uses : JamesIves/github-pages-deploy-action@releases/v3
26+ with :
27+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
28+ BRANCH : gh-pages
29+ FOLDER : build/docs/javadoc/
Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ Add the following dependency to your pom.xml:
1212<dependency >
1313 <groupId >io.getstream.client</groupId >
1414 <artifactId >stream-java</artifactId >
15- <version >3.1.10 </version >
15+ <version >3.2.0 </version >
1616</dependency >
1717```
1818
1919or in your build.gradle:
2020
2121``` gradle
22- compile 'io.getstream.client:stream-java:3.1.10 '
22+ compile 'io.getstream.client:stream-java:3.2.0 '
2323```
2424
2525In case you want to download the artifact and put it manually into your project,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
99}
1010
1111group ' io.getstream.client'
12- version = ' 3.1.10 '
12+ version = ' 3.2.0 '
1313
1414dependencies {
1515 sourceCompatibility = 1.8
You can’t perform that action at this time.
0 commit comments