0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 04:02:14 +02:00

Bump httpClient and move it to global 'versions' array

This commit is contained in:
PatrickMis 2022-09-05 13:40:21 +02:00 committed by cketti
parent 570208b3fb
commit 5cc022a9ee
2 changed files with 3 additions and 2 deletions

View File

@ -47,6 +47,7 @@ buildscript {
'minidns': '1.0.4',
'glide': '4.13.2',
'jsoup': '1.15.3',
'httpClient': '4.5.13',
'androidxTestRunner': '1.4.0',
'junit': '4.13.2',

View File

@ -14,11 +14,11 @@ dependencies {
api project(":mail:common")
implementation "commons-io:commons-io:${versions.commonsIo}"
compileOnly "org.apache.httpcomponents:httpclient:4.5.9"
compileOnly "org.apache.httpcomponents:httpclient:${versions.httpClient}"
testImplementation project(":mail:testing")
testImplementation "junit:junit:${versions.junit}"
testImplementation "com.google.truth:truth:${versions.truth}"
testImplementation "org.mockito:mockito-inline:${versions.mockito}"
testImplementation "org.apache.httpcomponents:httpclient:4.5.9"
testImplementation "org.apache.httpcomponents:httpclient:${versions.httpClient}"
}