never use cache

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163956 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-04-15 12:06:11 +00:00
parent 6055b99a56
commit 8f0d5c7ac6
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ public class HttpUtils
connection.setRequestProperty( "Authorization", "Basic " + encoding );
}
connection.setUseCaches( timestamp >= 0 );
connection.setUseCaches( false );
//connect to the remote site (may take some time)
connection.connect();