Hello,
I have two projects - ProjectB that depends on ProjectA, snapshot version. ProjectA can be published at local or remote repository (using maven-publish plugin).
Here is my repository order:
repositories {
mavenLocal()
maven {
url "http://somehost/nexus/content/repositories/snapshots/"
}
}
Unfortunately when the artifact is found at local repository it skip searching at remote one.
Is there any way how to push gradle to traverse all repositories to get latest version?