Class MavenProjectDependenciesConfiguration
java.lang.Object
org.wildfly.maven.plugins.licenses.MavenProjectDependenciesConfiguration
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal Stringpattern to exclude dependencies by their groupId, if null then include all dependenciesfinal Stringpattern to exclude dependencies by their groupId, if null then the include all dependencieslist of scopes to exclude while loading dependencies, if null, then include all scopesfinal Stringpattern to include dependencies by their artificatId, if null then include all artifactsfinal Stringpattern to include dependencies by their groupId, if null then include all dependencieslist of scopes to include while loading dependencies, if null, then include all scopesfinal booleantrue if should include optional dependencies, false to include only non-optional dependenciesfinal booleantrue if the the artifact of this project should be includedfinal booleantrue if should include transitive dependencies, false to include only direct dependenciesfinal booleanif true verbose mode is on, if false off -
Constructor Summary
ConstructorsConstructorDescriptionMavenProjectDependenciesConfiguration(boolean includeTransitiveDependencies, boolean includeOptionalDependencies, boolean includeSelfArtifact, List<String> includedScopes, List<String> excludedScopes, String includedArtifacts, String includedGroups, String excludedGroups, String excludedArtifacts, boolean verbose) -
Method Summary
-
Field Details
-
includeTransitiveDependencies
public final boolean includeTransitiveDependenciestrue if should include transitive dependencies, false to include only direct dependencies -
includeOptionalDependencies
public final boolean includeOptionalDependenciestrue if should include optional dependencies, false to include only non-optional dependencies -
includeSelfArtifact
public final boolean includeSelfArtifacttrue if the the artifact of this project should be included -
includedScopes
list of scopes to include while loading dependencies, if null, then include all scopes -
excludedScopes
list of scopes to exclude while loading dependencies, if null, then include all scopes -
includedArtifacts
pattern to include dependencies by their artificatId, if null then include all artifacts -
includedGroups
pattern to include dependencies by their groupId, if null then include all dependencies -
excludedGroups
pattern to exclude dependencies by their groupId, if null then the include all dependencies -
excludedArtifacts
pattern to exclude dependencies by their groupId, if null then include all dependencies -
verbose
public final boolean verboseif true verbose mode is on, if false off
-
-
Constructor Details
-
MavenProjectDependenciesConfiguration
public MavenProjectDependenciesConfiguration(boolean includeTransitiveDependencies, boolean includeOptionalDependencies, boolean includeSelfArtifact, List<String> includedScopes, List<String> excludedScopes, String includedArtifacts, String includedGroups, String excludedGroups, String excludedArtifacts, boolean verbose)
-