Update okhttp

This commit is contained in:
Luck 2019-04-23 20:45:02 +01:00
parent b81e8a40a4
commit 494ab6787f
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
2 changed files with 6 additions and 6 deletions

View File

@ -14,8 +14,8 @@ dependencies {
compile 'com.google.code.gson:gson:2.7' compile 'com.google.code.gson:gson:2.7'
compile 'com.google.guava:guava:19.0' compile 'com.google.guava:guava:19.0'
compile 'com.github.ben-manes.caffeine:caffeine:2.7.0' compile 'com.github.ben-manes.caffeine:caffeine:2.7.0'
compile 'com.squareup.okhttp3:okhttp:3.13.1' compile 'com.squareup.okhttp3:okhttp:3.14.1'
compile 'com.squareup.okio:okio:1.17.2' compile 'com.squareup.okio:okio:1.17.3'
compile('me.lucko.configurate:configurate-core:3.5') { compile('me.lucko.configurate:configurate-core:3.5') {
exclude(module: 'guava') exclude(module: 'guava')
} }

View File

@ -100,15 +100,15 @@ public enum Dependency {
OKIO( OKIO(
"com{}squareup{}" + RelocationHelper.OKIO_STRING, "com{}squareup{}" + RelocationHelper.OKIO_STRING,
RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING,
"1.17.2", "1.17.3",
"+AzkLS/6xHrUxH4db5gNYE0kfOsaiGcFz0WBqwyf4rg=", "yxja86IIrjirnYJUP/uT4fGF6GPIoOUsw3L/46WPVUk=",
Relocation.of(RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING) Relocation.of(RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING)
), ),
OKHTTP( OKHTTP(
"com{}squareup{}" + RelocationHelper.OKHTTP3_STRING, "com{}squareup{}" + RelocationHelper.OKHTTP3_STRING,
"okhttp", "okhttp",
"3.13.1", "3.14.1",
"CrQacT4qY478H0YQ7zTAf+85j517nXmm9UBrd5sAEaU=", "WmvmkWUwdqpk3NNh0uRF5AYLS13IgrH2uknnnd/D5WM=",
Relocation.of(RelocationHelper.OKHTTP3_STRING, RelocationHelper.OKHTTP3_STRING), Relocation.of(RelocationHelper.OKHTTP3_STRING, RelocationHelper.OKHTTP3_STRING),
Relocation.of(RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING) Relocation.of(RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING)
), ),