Skip to content

Commit 4a27ce9

Browse files
committed
Update build.gradle
1 parent 4bfe6c9 commit 4a27ce9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ repositories {
1515

1616
dependencies {
1717
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
18-
implementation 'com.google.guava:guava:28.0-jre'
18+
// https://mvnrepository.com/artifact/com.google.guava/guava
19+
implementation group: 'com.google.guava', name: 'guava', version: '30.1.1-jre'
1920

2021
// https://mvnrepository.com/artifact/com.google.code.gson/gson
21-
implementation 'com.google.code.gson:gson:2.8.6'
22+
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.7'
2223

2324
// https://mvnrepository.com/artifact/commons-codec/commons-codec
2425
implementation group: 'commons-codec', name: 'commons-codec', version: '1.14'
@@ -36,7 +37,7 @@ dependencies {
3637
implementation group: 'at.favre.lib', name: 'hkdf', version: '1.0.2'
3738

3839
// https://mvnrepository.com/artifact/com.neovisionaries/nv-websocket-client
39-
compile 'com.neovisionaries:nv-websocket-client:2.10'
40+
implementation group: 'com.neovisionaries', name: 'nv-websocket-client', version: '2.14'
4041

4142
// Use JUnit test framework
4243
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)