5
Eclipse에서 내 gradle 종속성 업데이트
내 이클립스에 간단한 gradle 프로젝트가 있습니다. 몇 개의 아파치 http jar를 포함하도록 build.gradle을 업데이트합니다. dependencies { compile group: 'commons-collections', name: 'commons-collections', version: '3.2' compile 'org.apache.httpcomponents:httpclient:4.2.3' compile "org.apache.httpcomponents:httpmime:4.2.3" testCompile group: 'junit', name: 'junit', version: '4.+' } 그러나 내 코드에서 Apache HTTP 항목을 참조하면 다음과 같이 표시됩니다. The import org.apache.http cannot be …