mirror of https://github.com/apache/ant-ivy
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:
parent
cda2b6c376
commit
3876f7e385
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue