change remote config url + disable remote config by default

git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/trunk@484026 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Xavier Hanin 2005-08-25 19:28:13 +00:00
parent cda2b6c376
commit 3876f7e385
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ public class Ivy implements TransferListener {
private boolean _repositoriesConfigured;
private boolean _useRemoteConfig = true;
private boolean _useRemoteConfig = false;
public Ivy() {
String ivyTypeDefs = System.getProperty("ivy.typedef.files");
@ -181,7 +181,7 @@ public class Ivy implements TransferListener {
boolean configured = false;
if (_useRemoteConfig && remote) {
try {
URL url = new URL("http://ivy.jayasoft.org/repository.properties");
URL url = new URL("http://www.jayasoft.org/ivy/repository.properties");
Message.verbose("configuring repositories with "+url);
props.load(URLHandlerRegistry.getDefault().openStream(url));
configured = true;