Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/javadoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Javadoc
on:
push:
branches:
- master
jobs:
javadoc:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up JDK
uses: actions/setup-java@081536e
with:
java-version: 8
- name: Set up Node.js 12
uses: actions/setup-node@8de2f9f
with:
node-version: 12
- name: Generate doc
run: gradle javadoc
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build/docs/javadoc/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Add the following dependency to your pom.xml:
<dependency>
<groupId>io.getstream.client</groupId>
<artifactId>stream-java</artifactId>
<version>3.1.10</version>
<version>3.2.0</version>
</dependency>
```

or in your build.gradle:

```gradle
compile 'io.getstream.client:stream-java:3.1.10'
compile 'io.getstream.client:stream-java:3.2.0'
```

In case you want to download the artifact and put it manually into your project,
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group 'io.getstream.client'
version = '3.1.10'
version = '3.2.0'

dependencies {
sourceCompatibility = 1.8
Expand Down