Some times, I don't want to add all of the dependency, so I need to exclude some from dependency, for example :
compile('com.google.http-client:google-http-client:1.20.0') {
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
}
I found com.google.http-client source code in github here, however, from the source code I can't find which part belongs to group "org.apache.httpcomponents" and which part belongs to 'httpclient'
I am a beginer on Gradle, so Can anyone explain how do I identify group and module?
(like stackoverflow question here, someone just post exclude group '****',module:'****', but I want to know where is the group and module,so in the future I can solve this qustion by myself.)