use of org.eclipse.aether.resolution.ArtifactRequest in project gate-core by GateNLP.
the class SimpleModelResolver method resolveModel.
@Override
public ModelSource resolveModel(String groupId, String artifactId, String version) throws UnresolvableModelException {
Artifact pomArtifact = new DefaultArtifact(groupId, artifactId, "", "pom", version);
try {
ArtifactRequest request = new ArtifactRequest(pomArtifact, repositories, null);
pomArtifact = system.resolveArtifact(session, request).getArtifact();
} catch (org.eclipse.aether.resolution.ArtifactResolutionException ex) {
throw new UnresolvableModelException(ex.getMessage(), groupId, artifactId, version, ex);
}
File pomFile = pomArtifact.getFile();
return new FileModelSource(pomFile);
}
use of org.eclipse.aether.resolution.ArtifactRequest in project mule by mulesoft.
the class DependencyResolver method resolveArtifact.
/**
* Resolves the path for an artifact.
*
* @param artifact the {@link Artifact} requested, must not be {@code null}
* @param remoteRepositories remote repositories to be used in addition to the one in context
* @return The resolution result, never {@code null}.
* @throws {@link ArtifactResolutionException} if the artifact could not be resolved.
*/
public ArtifactResult resolveArtifact(Artifact artifact, List<RemoteRepository> remoteRepositories) throws ArtifactResolutionException {
checkNotNull(artifact, "artifact cannot be null");
final ArtifactRequest request = new ArtifactRequest(artifact, resolutionContext.getRemoteRepositories(), null);
// Has to set authentication to these remote repositories as they may come from a pom descriptor
remoteRepositories.forEach(remoteRepository -> {
RemoteRepository authenticatedRemoteRepository = setAuthentication(remoteRepository);
if (!request.getRepositories().contains(authenticatedRemoteRepository)) {
request.addRepository(authenticatedRemoteRepository);
}
});
return repositoryState.getSystem().resolveArtifact(repositoryState.getSession(), request);
}
use of org.eclipse.aether.resolution.ArtifactRequest in project mule by mulesoft.
the class AetherClassPathClassifierTestCase method serviceClassification.
@Test
public void serviceClassification() throws Exception {
this.directDependencies = newArrayList(fooCoreDep, fooToolsArtifactDep, fooTestsSupportDep, derbyDriverDep, guavaDep, fooServiceDep);
when(dependencyResolver.getDirectDependencies(rootArtifact)).thenReturn(directDependencies);
ArtifactDescriptorResult artifactDescriptorResult = mock(ArtifactDescriptorResult.class);
List<Dependency> managedDependencies = newArrayList(guavaDep);
when(artifactDescriptorResult.getManagedDependencies()).thenReturn(managedDependencies);
when(dependencyResolver.readArtifactDescriptor(any(Artifact.class), any(List.class))).thenReturn(artifactDescriptorResult);
when(dependencyResolver.resolveArtifact(any(Artifact.class), any(List.class))).thenAnswer(invocation -> {
Artifact artifact = (Artifact) invocation.getArguments()[0];
artifact = artifact.setFile(temporaryFolder.newFile());
return new ArtifactResult(new ArtifactRequest(artifact, null, null)).setArtifact(artifact);
});
when(artifactClassificationTypeResolver.resolveArtifactClassificationType(rootArtifact)).thenReturn(APPLICATION);
File fooServiceArtifactFile = temporaryFolder.newFolder();
File metaInfFolder = new File(fooServiceArtifactFile, META_INF);
metaInfFolder.delete();
metaInfFolder.mkdir();
File descriptor = new File(metaInfFolder, MULE_ARTIFACT_JSON_DESCRIPTOR);
MuleServiceModel muleServiceModel = new MuleServiceModelBuilder().setName("Foo").setMinMuleVersion("4.0.0").withServiceProviderClassName("org.foo.ServiceProvider").withClassLoaderModelDescriptorLoader(new MuleArtifactLoaderDescriptor(MULE_LOADER_ID, emptyMap())).withBundleDescriptorLoader(new MuleArtifactLoaderDescriptor(MULE_LOADER_ID, emptyMap())).build();
String model = new MuleServiceModelJsonSerializer().serialize(muleServiceModel);
FileUtils.write(descriptor, model);
List<File> fooServiceUrls = newArrayList(fooServiceArtifactFile);
when(dependencyResolver.resolveDependencies(argThat(equalTo(new Dependency(fooServiceDep.getArtifact(), COMPILE))), argThat(equalTo(emptyList())), argThat(equalTo(emptyList())), argThat(instanceOf(DependencyFilter.class)), argThat(equalTo(emptyList())))).thenReturn(fooServiceUrls);
File rootArtifactFile = temporaryFolder.newFile();
Artifact jarRootArtifact = rootArtifact.setFile(rootArtifactFile);
ArtifactResult rootArtifactResult = mock(ArtifactResult.class);
when(rootArtifactResult.getArtifact()).thenReturn(jarRootArtifact);
when(dependencyResolver.resolveArtifact(argThat(new ArtifactMatcher(rootArtifact.getGroupId(), rootArtifact.getArtifactId())))).thenReturn(rootArtifactResult);
File serviceArtifactFile = temporaryFolder.newFile();
ArtifactResult serviceArtifactResult = mock(ArtifactResult.class);
Artifact jarServiceArtifact = serviceArtifact.setFile(serviceArtifactFile);
when(serviceArtifactResult.getArtifact()).thenReturn(jarServiceArtifact);
when(dependencyResolver.resolveArtifact(argThat(new ArtifactMatcher(serviceArtifact.getGroupId(), serviceArtifact.getArtifactId())))).thenReturn(serviceArtifactResult);
ArtifactDescriptorResult defaultArtifactDescriptorResult = noManagedDependencies();
Dependency compileMuleCoreDep = fooCoreDep.setScope(COMPILE);
Dependency compileMuleArtifactDep = fooToolsArtifactDep.setScope(COMPILE);
File fooCoreArtifactFile = temporaryFolder.newFile();
File fooToolsArtifactFile = temporaryFolder.newFile();
when(dependencyResolver.resolveDependencies(argThat(nullValue(Dependency.class)), (List<Dependency>) and((argThat(hasItems(equalTo(compileMuleCoreDep), equalTo(compileMuleArtifactDep)))), argThat(hasSize(3))), (List<Dependency>) argThat(hasItems(equalTo(guavaDep))), argThat(instanceOf(DependencyFilter.class)), argThat(equalTo(emptyList())))).thenReturn(newArrayList(fooCoreArtifactFile, fooToolsArtifactFile));
ArtifactsUrlClassification classification = classifier.classify(context);
assertThat(classification.getTestRunnerLibUrls(), hasSize(1));
assertThat(classification.getTestRunnerLibUrls(), hasItem(rootArtifactFile.toURI().toURL()));
assertThat(classification.getPluginUrlClassifications(), is(empty()));
assertThat(classification.getApplicationSharedLibUrls(), is(empty()));
assertThat(classification.getContainerUrls(), hasSize(2));
assertThat(classification.getServiceUrlClassifications(), hasSize(1));
assertThat(classification.getServiceUrlClassifications().get(0).getUrls(), hasItem(fooServiceArtifactFile.toURI().toURL()));
verify(defaultArtifactDescriptorResult, atLeastOnce()).getManagedDependencies();
verify(dependencyResolver, atLeastOnce()).readArtifactDescriptor(any(Artifact.class), anyObject());
verify(dependencyResolver, atLeastOnce()).resolveDependencies(argThat(equalTo(new Dependency(fooServiceDep.getArtifact(), COMPILE))), argThat(equalTo(emptyList())), argThat(equalTo(emptyList())), argThat(instanceOf(DependencyFilter.class)), argThat(equalTo(emptyList())));
verify(artifactClassificationTypeResolver).resolveArtifactClassificationType(rootArtifact);
verify(dependencyResolver, atLeastOnce()).resolveDependencies(argThat(nullValue(Dependency.class)), (List<Dependency>) and((argThat(hasItems(equalTo(compileMuleCoreDep), equalTo(compileMuleArtifactDep)))), argThat(hasSize(3))), (List<Dependency>) argThat(hasItems(equalTo(guavaDep))), argThat(instanceOf(DependencyFilter.class)), argThat(equalTo(emptyList())));
}
use of org.eclipse.aether.resolution.ArtifactRequest in project spring-cloud-function by spring-cloud.
the class DependencyResolutionModule method getArtifactRequests.
private List<ArtifactRequest> getArtifactRequests(List<Dependency> dependencies) {
List<ArtifactRequest> list = new ArrayList<>();
for (Dependency dependency : dependencies) {
ArtifactRequest request = new ArtifactRequest(dependency.getArtifact(), null, null);
request.setRepositories(aetherRepositories(new Properties()));
list.add(request);
}
return list;
}
use of org.eclipse.aether.resolution.ArtifactRequest in project syndesis by syndesisio.
the class RepackageExtensionMojo method downloadAndInstallArtifact.
/*
* @param artifact The artifact coordinates in the format
* {@code <groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>}, must not be {@code null}.
*
*/
protected ArtifactResult downloadAndInstallArtifact(String artifact) throws MojoExecutionException {
ArtifactResult result;
ArtifactRequest request = new ArtifactRequest();
request.setArtifact(new DefaultArtifact(artifact));
request.setRepositories(remoteRepos);
getLog().info("Resolving artifact " + artifact + " from " + remoteRepos);
try {
result = repoSystem.resolveArtifact(repoSession, request);
return result;
} catch (ArtifactResolutionException e) {
throw new MojoExecutionException(e.getMessage(), e);
}
}
Aggregations