If I use the maven-dependency-plugin plugin, than I can\'t use a version range. Also it seems the version of a there defined artifact doesn\'t get updated though a newer ver
The problem with dependency ranges is that you did not specify one of the versions you used. If you specified the range as [1.0.0,1.1.0-SNAPSHOT) then it may do as you expect. You can't assume 1.0 and 1.1 will resolve to 1.0.* and 1.1.* which is what you seem to imply.