Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5cc022a9 authored by PatrickMis's avatar PatrickMis Committed by cketti
Browse files

Bump httpClient and move it to global 'versions' array

parent 570208b3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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',
+2 −2
Original line number Diff line number Diff line
@@ -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}"
}