Update build.gradle to not use depricated compile (#2544)
This commit is contained in:
parent
b0ce55e6c8
commit
93cfdeb572
|
|
@ -13,6 +13,6 @@ repositories {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
||||||
compile "org.java-websocket:Java-WebSocket:1.3.8"
|
implementation "org.java-websocket:Java-WebSocket:1.3.8"
|
||||||
implementation 'com.google.code.gson:gson:2.8.5'
|
implementation 'com.google.code.gson:gson:2.8.5'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue