Hi May I know if the Maven Ant's dependencies task supports version range?
For example instead of <artifact:dependencies pathId="dependency.classpath"> <dependency groupId="junit" artifactId="junit" version="3.8.2" scope="test"/> </artifact:dependencies> I would like to specify version 3.0 or greater, <artifact:dependencies pathId="dependency.classpath"> <dependency groupId="junit" artifactId="junit" version="[3.0,)" scope="test"/> </artifact:dependencies> -- Hez
