Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2013-2014 Oracle and/or its affiliates. All rights reserved.
*
* Oracle licenses this file to You 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.jvnet.jax_ws_commons.jaxws;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.eclipse.aether.RepositorySystem;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.collection.CollectRequest;
import org.eclipse.aether.graph.Dependency;
import org.eclipse.aether.graph.DependencyFilter;
import org.eclipse.aether.graph.Exclusion;
import org.eclipse.aether.repository.RemoteRepository;
import org.eclipse.aether.resolution.DependencyRequest;
import org.eclipse.aether.resolution.DependencyResolutionException;
import org.eclipse.aether.resolution.DependencyResult;
import org.eclipse.aether.artifact.DefaultArtifact;
/**
*
* @author lukas
*/
final class DependencyResolver {
public static DependencyResult resolve(CollectRequest collectRequest, DependencyFilter filter,
List remoteRepos, RepositorySystem repoSystem,
RepositorySystemSession repoSession) throws DependencyResolutionException {
DependencyRequest dependencyRequest = new DependencyRequest(collectRequest, filter);
return repoSystem.resolveDependencies(repoSession, dependencyRequest);
}
public static DependencyResult resolve(org.apache.maven.artifact.Artifact artifact, DependencyFilter filter,
List remoteRepos, RepositorySystem repoSystem, RepositorySystemSession repoSession)
throws DependencyResolutionException {
Artifact a = new DefaultArtifact(artifact.getGroupId(), artifact.getArtifactId(), artifact.getClassifier(), artifact.getType(), artifact.getVersion());
Dependency dependency = new Dependency(a, null);
CollectRequest collectRequest = new CollectRequest(dependency, remoteRepos);
return resolve(collectRequest, filter, remoteRepos, repoSystem, repoSession);
}
public static DependencyResult resolve(org.apache.maven.model.Dependency dependency, DependencyFilter filter,
List remoteRepos, RepositorySystem repoSystem, RepositorySystemSession repoSession)
throws DependencyResolutionException {
CollectRequest collectRequest = new CollectRequest(createDependency(dependency), remoteRepos);
return resolve(collectRequest, filter, remoteRepos, repoSystem, repoSession);
}
private static Dependency createDependency(org.apache.maven.model.Dependency d) {
Collection toExclude = new ArrayList();
for (org.apache.maven.model.Exclusion e : d.getExclusions()) {
toExclude.add(new Exclusion(e.getGroupId(), e.getArtifactId(), null, "jar"));
}
Artifact artifact = new DefaultArtifact(d.getGroupId(), d.getArtifactId(), "jar", d.getVersion());
return new Dependency(artifact, d.getScope(), d.isOptional(), toExclude);
}
}