52
52
import org .eclipse .aether .artifact .ArtifactTypeRegistry ;
53
53
import org .eclipse .aether .artifact .DefaultArtifact ;
54
54
import org .eclipse .aether .collection .CollectRequest ;
55
+ import org .eclipse .aether .graph .DefaultDependencyNode ;
55
56
import org .eclipse .aether .graph .Dependency ;
56
57
import org .eclipse .aether .graph .DependencyFilter ;
57
58
import org .eclipse .aether .installation .InstallRequest ;
58
59
import org .eclipse .aether .installation .InstallationException ;
59
60
import org .eclipse .aether .repository .LocalRepository ;
60
61
import org .eclipse .aether .repository .LocalRepositoryManager ;
61
62
import org .eclipse .aether .repository .RemoteRepository ;
62
- import org .eclipse .aether .resolution .ArtifactDescriptorException ;
63
63
import org .eclipse .aether .resolution .ArtifactRequest ;
64
64
import org .eclipse .aether .resolution .ArtifactResolutionException ;
65
65
import org .eclipse .aether .resolution .ArtifactResult ;
@@ -172,10 +172,7 @@ public void execute() throws MojoExecutionException {
172
172
resolveExtraArtifacts (resolvedArtifacts );
173
173
installArtifacts (resolvedArtifacts );
174
174
175
- } catch (DependencyResolutionException
176
- | InstallationException
177
- | ArtifactDescriptorException
178
- | ArtifactResolutionException e ) {
175
+ } catch (DependencyResolutionException | InstallationException | ArtifactResolutionException e ) {
179
176
throw new MojoExecutionException (e .getMessage (), e );
180
177
}
181
178
}
@@ -227,6 +224,7 @@ private void resolveProjectDependencies(Map<String, Artifact> resolvedArtifacts)
227
224
228
225
List <Dependency > dependencies = project .getDependencies ().stream ()
229
226
.map (d -> RepositoryUtils .toDependency (d , artifactTypeRegistry ))
227
+ .filter (d -> classpathFilter .accept (new DefaultDependencyNode (d ), null ))
230
228
.collect (Collectors .toList ());
231
229
232
230
CollectRequest collectRequest = new CollectRequest ();
@@ -251,12 +249,9 @@ private void resolveProjectDependencies(Map<String, Artifact> resolvedArtifacts)
251
249
252
250
/**
253
251
* Resolve extra artifacts.
254
- *
255
- * @return
256
252
*/
257
253
private void resolveExtraArtifacts (Map <String , Artifact > resolvedArtifacts )
258
- throws MojoExecutionException , DependencyResolutionException , ArtifactDescriptorException ,
259
- ArtifactResolutionException {
254
+ throws MojoExecutionException , DependencyResolutionException , ArtifactResolutionException {
260
255
261
256
if (extraArtifacts == null ) {
262
257
return ;
0 commit comments