
org.gradle.plugins.ide.internal.resolver.DefaultIdeDependencyResolver Maven / Gradle / Ivy
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.plugins.ide.internal.resolver;
import org.gradle.api.Action;
import org.gradle.api.artifacts.ArtifactView;
import org.gradle.api.artifacts.Configuration;
import org.gradle.api.artifacts.component.ComponentIdentifier;
import org.gradle.api.artifacts.component.ModuleComponentIdentifier;
import org.gradle.api.artifacts.result.ResolvedArtifactResult;
import org.gradle.api.internal.artifacts.DefaultModuleVersionIdentifier;
import org.gradle.api.specs.Spec;
import org.gradle.plugins.ide.internal.resolver.model.IdeExtendedRepoFileDependency;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
/**
* TODO only here because Kotlin DSL uses this. Please remove once that is fixed.
*/
public class DefaultIdeDependencyResolver {
private static final Spec IS_A_MODULE_ID = new Spec() {
@Override
public boolean isSatisfiedBy(ComponentIdentifier id) {
return id instanceof ModuleComponentIdentifier;
}
};
public List getIdeRepoFileDependencies(Configuration configuration) {
Set artifacts = configuration.getIncoming().artifactView(new Action() {
@Override
public void execute(ArtifactView.ViewConfiguration viewConfiguration) {
viewConfiguration.lenient(true);
viewConfiguration.componentFilter(IS_A_MODULE_ID);
}
}).getArtifacts().getArtifacts();
List externalDependencies = new ArrayList(artifacts.size());
for (ResolvedArtifactResult artifact : artifacts) {
ModuleComponentIdentifier moduleId = (ModuleComponentIdentifier) artifact.getId().getComponentIdentifier();
IdeExtendedRepoFileDependency ideRepoFileDependency = new IdeExtendedRepoFileDependency();
ideRepoFileDependency.setId(DefaultModuleVersionIdentifier.newId(moduleId.getModuleIdentifier(), moduleId.getVersion()));
externalDependencies.add(ideRepoFileDependency);
}
return externalDependencies;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy