From 3876f7e3856a4efd5b7e9d8c89880041ea981260 Mon Sep 17 00:00:00 2001 From: Xavier Hanin Date: Thu, 25 Aug 2005 19:28:13 +0000 Subject: [PATCH] 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 --- src/java/fr/jayasoft/ivy/Ivy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/fr/jayasoft/ivy/Ivy.java b/src/java/fr/jayasoft/ivy/Ivy.java index e2f8e900..f998ddb2 100644 --- a/src/java/fr/jayasoft/ivy/Ivy.java +++ b/src/java/fr/jayasoft/ivy/Ivy.java @@ -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;