mirror of https://github.com/apache/ant-ivy
FIX: use AUTH configuration for configuration file
git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/trunk@483991 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4642f1df28
commit
17342e8746
|
|
@ -1,4 +1,7 @@
|
|||
- publish task now uses srcivypattern for ivy files finding for delivery
|
||||
- new type filtering in cachepath task
|
||||
- new cachefileset task: builds an ant fileset of artifacts in cache
|
||||
- publish task now uses srcivypattern for ivy files finding and for delivery
|
||||
- FIX: use AUTH configuration for configuration file
|
||||
|
||||
version 1.1 - 2005-06-13
|
||||
===============================
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ import org.xml.sax.helpers.DefaultHandler;
|
|||
|
||||
import fr.jayasoft.ivy.Ivy;
|
||||
import fr.jayasoft.ivy.ModuleId;
|
||||
import fr.jayasoft.ivy.url.URLHandlerRegistry;
|
||||
import fr.jayasoft.ivy.util.Configurator;
|
||||
import fr.jayasoft.ivy.util.Message;
|
||||
|
||||
|
|
@ -54,7 +55,7 @@ public class XmlIvyConfigurationParser extends DefaultHandler {
|
|||
|
||||
InputStream stream = null;
|
||||
try {
|
||||
stream = configuration.openStream();
|
||||
stream = URLHandlerRegistry.getDefault().openStream(configuration);
|
||||
SAXParserFactory.newInstance().newSAXParser().parse(
|
||||
stream,
|
||||
this);
|
||||
|
|
|
|||
Loading…
Reference in New Issue