Skip to content

Commit fce3049

Browse files
committed
Prepare version 0.4.0
1 parent 0246170 commit fce3049

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

ChatExample/app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ android {
2929

3030
dependencies {
3131
/*
32-
To update the JavaPhoenixClient, either use the latest dependency from jcenter
32+
To update the JavaPhoenixClient, either use the latest dependency from mavenCentral()
3333
OR run
3434
`./gradlew jar`
3535
and copy
3636
`/build/lib/*.jar` to `/ChatExample/app/libs`
37-
and comment out the jcenter dependency
37+
and comment out the mavenCentral() dependency
3838
*/
39-
implementation fileTree(dir: 'libs', include: ['*.jar'])
40-
// implementation 'com.github.dsrees:JavaPhoenixClient:0.2.3'
39+
// implementation fileTree(dir: 'libs', include: ['*.jar'])
40+
implementation 'com.github.dsrees:JavaPhoenixClient:0.3.4'
4141

4242

4343
implementation "com.google.code.gson:gson:2.8.5"

ChatExample/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
ext.kotlin_version = '1.3.31'
55
repositories {
66
google()
7-
jcenter()
7+
mavenCentral()
88

99
}
1010
dependencies {
@@ -18,7 +18,7 @@ buildscript {
1818
allprojects {
1919
repositories {
2020
google()
21-
jcenter()
21+
mavenCentral()
2222

2323
}
2424
}

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,18 @@ val socket = Socket("http://localhost:4000/socket/websocket",
5555

5656
### Installation
5757

58-
JavaPhoenixClient is hosted on JCenter. You'll need to make sure you declare `jcenter()` as one of your repositories
58+
JavaPhoenixClient is hosted on MavenCentral. You'll need to make sure you declare `mavenCentral()` as one of your repositories
5959

6060
```
6161
repositories {
62-
jcenter()
62+
mavenCentral()
6363
}
6464
```
6565

6666
and then add the library. See [releases](https://github.com/dsrees/JavaPhoenixClient/releases) for the latest version
6767
```$xslt
6868
dependencies {
69-
implementation 'com.github.dsrees:JavaPhoenixClient:0.3.4'
69+
implementation 'com.github.dsrees:JavaPhoenixClient:0.4.0'
7070
}
7171
```
7272

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ apply plugin: "org.jetbrains.dokka"
2525
apply plugin: "com.vanniktech.maven.publish"
2626

2727
group 'com.github.dsrees'
28-
version '0.3.4'
28+
version '0.4.0'
2929

3030
sourceCompatibility = 1.8
3131

0 commit comments

Comments
 (0)