Package net.sourceforge.javautil.common.io.IModifiableInputSource

Examples of net.sourceforge.javautil.common.io.IModifiableInputSource.URLInputSource


    }
   
    log.info("Fetching descriptor for: " + reference);
    URL url = this.getResource(reference, this.createFilenamePrefix(reference) + ".pom");

    ProjectObjectModel pom = url == null ? null : ProjectObjectModel.parse(resolver, new URLInputSource(url));
    this.descriptorCache.put(id, pom);
   
    return pom;
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.common.io.IModifiableInputSource.URLInputSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.