You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The plugin currently has some support for excluding dependencies, however it is rather limited.
Add support for the normal dependency exclusion mechanism (i.e dependency/exclusions)
The change probably involves using org.eclipse.aether.util.graph.selector.ExclusionDependencySelector to filter the list of dependencies here:
One other way would be to do a transitive resolution with aether, however the set effective files to use for copy/unpack would have to be computed and that would change the current code a lot more.
The text was updated successfully, but these errors were encountered:
The plugin currently has some support for excluding dependencies, however it is rather limited.
Add support for the normal dependency exclusion mechanism (i.e
dependency/exclusions
)The change probably involves using
org.eclipse.aether.util.graph.selector.ExclusionDependencySelector
to filter the list of dependencies here:glassfish-build-maven-plugin/src/main/java/org/glassfish/build/FeatureSetsDependenciesMojo.java
Line 394 in 586f2af
One other way would be to do a transitive resolution with aether, however the set effective files to use for copy/unpack would have to be computed and that would change the current code a lot more.
The text was updated successfully, but these errors were encountered: