Examples of ModuleVersionNotFoundException


Examples of org.gradle.internal.resolve.ModuleVersionNotFoundException

        this.failure = failure;
        return this;
    }

    public void notFound(ModuleVersionSelector versionSelector) {
        failed(new ModuleVersionNotFoundException(versionSelector, getAttempted()));
    }
View Full Code Here

Examples of org.gradle.internal.resolve.ModuleVersionNotFoundException

    public void notFound(ModuleVersionSelector versionSelector) {
        failed(new ModuleVersionNotFoundException(versionSelector, getAttempted()));
    }

    public void notFound(ModuleVersionIdentifier versionIdentifier) {
        failed(new ModuleVersionNotFoundException(versionIdentifier, getAttempted()));
    }
View Full Code Here

Examples of org.gradle.internal.resolve.ModuleVersionNotFoundException

        reset();
        this.failure = failure;
    }

    public void notFound(ModuleVersionSelector requested) {
        failed(new ModuleVersionNotFoundException(requested, getAttempted()));
    }
View Full Code Here

Examples of org.gradle.internal.resolve.ModuleVersionNotFoundException

    public ArtifactResolver getArtifactResolver() {
        return this;
    }

    public void resolve(DependencyMetaData dependency, BuildableComponentIdResolveResult result) {
        result.failed(new ModuleVersionNotFoundException(dependency.getRequested(), "Cannot resolve external dependency %s because no repositories are defined."));
    }
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.