mirror of https://github.com/apache/maven.git
[MNG-5513] Artifact filtering for Eclipse Aether fixed
The filtering was left unchanged, while Aether GroupID changed from org.sonatype.aether to org.eclipse.aether, basically letting Plugins to reference Eclipse Aether that would produce runtime Linkage errors.
This commit is contained in:
parent
02d1242306
commit
4a7b25c3dd
|
@ -80,9 +80,9 @@ public class DefaultArtifactFilterManager
|
|||
artifacts.add( "org.apache.maven:maven-settings-builder" );
|
||||
artifacts.add( "org.apache.maven:maven-toolchain" );
|
||||
artifacts.add( "org.apache.maven.wagon:wagon-provider-api" );
|
||||
artifacts.add( "org.sonatype.aether:aether-api" );
|
||||
artifacts.add( "org.sonatype.aether:aether-spi" );
|
||||
artifacts.add( "org.sonatype.aether:aether-impl" );
|
||||
artifacts.add( "org.eclipse.aether:aether-api" );
|
||||
artifacts.add( "org.eclipse.aether:aether-spi" );
|
||||
artifacts.add( "org.eclipse.aether:aether-impl" );
|
||||
|
||||
/*
|
||||
* NOTE: Don't exclude the wagons or any of their dependencies (apart from the wagon API). This would otherwise
|
||||
|
|
Loading…
Reference in New Issue