I'm trying to understand how Gradle handles dependency versions with a '+' sign as seen in example 8.1 here: http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
testCompile group: 'junit', name: 'junit', version: '4.+
The documentation states that this will get a version of junit >= 4.0. How would a get a version of a dependency greater than (or equal to), say, 5.10? Would it be 5.10+ or 5.1+? The former seems to not work correctly, but the latter does. How would I get a dependency greater than or equal to 1.22? 1.2+? In this scenario, if version 1.21 exists and is the latest version, I would like to fail, since I want greater than or equal to 1.22, but 1.2+ will look for >= 1.20. How can I specify this? Is this possible? I can't seem to find more documentation on it.
Edit: I tend to think of it as 1.2+ is equivalent to 1.2([0-9]+). Is this the correct way of thinking?