Package org.gradle.internal.resolve.result

Examples of org.gradle.internal.resolve.result.ModuleVersionListing


    InMemoryMetaDataCache(InMemoryCacheStats stats) {
        this.stats = stats;
    }

    public boolean supplyModuleVersions(ModuleVersionSelector requested, BuildableModuleComponentVersionSelectionResolveResult result) {
        ModuleVersionListing moduleVersionListing1 = moduleVersionListing.get(requested);
        if (moduleVersionListing1 == null) {
            return false;
        }
        result.listed(moduleVersionListing1);
        return true;
View Full Code Here

TOP

Related Classes of org.gradle.internal.resolve.result.ModuleVersionListing

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.