slawekjaranowski commented on code in PR #1571:
URL:
https://github.com/apache/maven-dependency-plugin/pull/1571#discussion_r2679372494
##########
src/main/java/org/apache/maven/plugins/dependency/fromDependencies/AbstractDependencyFilterMojo.java:
##########
@@ -479,6 +502,42 @@ private Set<Artifact>
resolve(Set<org.eclipse.aether.artifact.Artifact> artifact
return resolvedArtifacts;
}
+ private Set<Artifact> collectArtifacts(MavenProject project) throws
DependencyResolutionException {
+ if (graphRoots == null || graphRoots.isEmpty()) {
+ // artifact have already been resolved here due to
+ // @Mojo(requiresDependencyResolution = ResolutionScope.TEST) on
final Mojo
+ return project.getArtifacts();
+ } else {
+ // MavenProject doesn't provide access to the graph of
dependencies(only the direct dependencies)
+ // Hence we need to re-resolve artifacts, but only for the
matching graphnodes
+ List<DependencyMatcher> filterMatchers =
+
graphRoots.stream().map(GraphRootMatcher::new).collect(Collectors.toList());
+
+ DependencyMatcher subTreeMatcher = new
OrDependencyMatcher(filterMatchers);
+
+ Set<Artifact> artifacts = new HashSet<>();
+ for (Dependency dep : project.getDependencies()) {
+ if (subTreeMatcher.matches(dep)) {
+ artifacts.addAll(resolveDependencyArtifacts(dep));
+ }
+ }
+ return artifacts;
+ }
+ }
+
+ private Set<Artifact> resolveDependencyArtifacts(Dependency root) throws
DependencyResolutionException {
+ org.eclipse.aether.graph.Dependency dependency =
RepositoryUtils.toDependency(
+ root,
session.getRepositorySession().getArtifactTypeRegistry());
+
+ List<RemoteRepository> remoteRepositories =
+
RepositoryUtils.toRepos(session.getProjectBuildingRequest().getRemoteRepositories());
Review Comment:
There is `MavenProject#getRemoteProjectRepositories`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]