Examples of IvyCachePath


Examples of org.apache.ivy.ant.IvyCachePath

        sb.append("Building classpath (").append(getPathid()).append(")");
        sb.append(" with ");
        sb.append(organisation).append("#").append(module).append(";").append(revision);
        sb.append(" conf=").append(conf);
        log(sb.toString(), Project.MSG_DEBUG);
        IvyCachePath pluginCachePath = new IvyCachePath();
        pluginCachePath.setOrganisation(organisation);
        pluginCachePath.setModule(module);
        pluginCachePath.setRevision(revision);
        pluginCachePath.setConf(conf);
        pluginCachePath.setPathid(getPathid());
        pluginCachePath.setLog(LogOptions.LOG_DOWNLOAD_ONLY);
        pluginCachePath.setInline(true);

        pluginCachePath.setSettingsRef(ivyRef);
        initTask(pluginCachePath).execute();

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.