Package org.gradle.api.internal.artifacts.result

Examples of org.gradle.api.internal.artifacts.result.DefaultResolutionResult


                encoder.writeByte(DONE);
            }
        });
        BinaryStore.BinaryData data = store.done();
        RootFactory rootSource = new RootFactory(data, failures, cache);
        return new DefaultResolutionResult(rootSource);
    }
View Full Code Here


        rootModule = createOrGet(root, VersionSelectionReasons.ROOT, componentIdentifier);
        return this;
    }

    public ResolutionResult complete() {
        return new DefaultResolutionResult(new RootFactory(rootModule));
    }
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.artifacts.result.DefaultResolutionResult

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.