Skip to content

Commit 8ef01ce

Browse files
authored
Add javadoc copier (#71)
* Add javadoc copier * Correct version in readme
1 parent ed14261 commit 8ef01ce

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

.github/workflows/javadoc.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

1919
or 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

2525
In case you want to download the artifact and put it manually into your project,

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group 'io.getstream.client'
12-
version = '3.1.10'
12+
version = '3.2.0'
1313

1414
dependencies {
1515
sourceCompatibility = 1.8

0 commit comments

Comments
 (0)