Examples of ResolutionCacheManager


Examples of org.apache.ivy.core.cache.ResolutionCacheManager

        }

        public boolean checkProjectDependencies() {
            execute();
            try {
                ResolutionCacheManager cacheMgr = getIvyInstance()
                        .getResolutionCacheManager();
                String[] confs = splitConfs(getConf());
                String resolveId = getResolveId();
                if (resolveId == null) {
                    resolveId = ResolveOptions
                            .getDefaultResolveId(getResolvedModuleId());
                }
                XmlReportParser parser = new XmlReportParser();
                for (int i = 0; i < confs.length; i++) {
                    File report = cacheMgr
                            .getConfigurationResolveReportInCache(resolveId,
                                    confs[i]);
                    parser.parse(report);

                    Artifact[] artifacts = parser.getArtifacts();
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.