Maven makes using version ranges too annoying by constantly checking for new

versions with the repository.

Why, Maven, do you not offer an option to not go searching numerous sources on
the Internet every time I run a build? (And then timing out when some of those
sources are behind firewalls and I'm not running vpn at the moment.) Indeed,
why would that not be the default?
This commit is contained in:
Michael Bayne
2010-12-18 17:30:57 +00:00
parent 0fd6f66181
commit 7d99928d7c
+2 -2
View File
@@ -44,13 +44,13 @@
<dependency>
<groupId>com.samskivert</groupId>
<artifactId>samskivert</artifactId>
<version>[1.1,)</version>
<version>1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>[r07,)</version>
<version>r07</version>
<scope>compile</scope>
</dependency>
<dependency>