안드로이드에서 apk 파일 생성할려고 하는데요

Could not find httpclient.jar (org.apache.httpcomponents:httpclient:4.2.6).
Searched in the following locations:
http://devrepo.kakao.com:8088/nexus/content/groups/public/org/apache/httpcomponents/httpclient/4.2.6/httpclient-4.2.6.jar

.
.
이런 에러가 뜹니다… 무슨 문제 인지 알 수 있을까요?

root project의 빌드파일에서 리파지토리를 추가하는 순서가 어떻게 되시나요?

subprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
        maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
    }
}

리파지토리 추가하신 순서를 알려주시면 될 것 같습니다.