For now, I should to specify version explicitly:
dependencies {
compile 'projGroup:projName:0.1-SNAPSHOT'
}
What's I've tried, but it doesn't work:
compile "projGroup:projName:0.+-SNAPSHOT"
compile "projGroup:projName:+"
How can I tell gradle to use latest snapsot version from the remote maven repo?