I have several repositories and many dependencies. This is similar to build.gradle:
repositories { maven {url "A"} maven {url "B"} } dependencies { compile 'libA' compile 'libB' compile 'libC' }
Is there a way to indicate that I will download libA from one repo (A) and libB and libC from another repo (B)?
source share