Class ModuleBinaries
- java.lang.Object
-
- org.apache.maven.plugins.assembly.model.ModuleBinaries
-
- All Implemented Interfaces:
Serializable
public class ModuleBinaries extends Object implements Serializable
Contains configuration options for including the binary files of a project module in an assembly.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ModuleBinaries()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDependencySet(DependencySet dependencySet)Method addDependencySet.voidaddExclude(String string)Method addExclude.voidaddInclude(String string)Method addInclude.StringgetAttachmentClassifier()Get when specified, the attachmentClassifier will cause the assembler to look at artifacts attached to the module instead of the main project artifact.List<DependencySet>getDependencySets()Method getDependencySets.StringgetDirectoryMode()Get similar to a UNIX permission, sets the directory mode of the directories included.List<String>getExcludes()Method getExcludes.StringgetFileMode()Get similar to a UNIX permission, sets the file mode of the files included.List<String>getIncludes()Method getIncludes.StringgetOutputDirectory()Get sets the output directory relative to the root of the root directory of the assembly.StringgetOutputFileNameMapping()Get sets the mapping pattern for all NON-UNPACKED dependencies included in this assembly.UnpackOptionsgetUnpackOptions()Get allows the specification of includes and excludes, along with filtering options, for items unpacked from a module artifact.booleanisIncludeDependencies()Get if set to true, the plugin will include the direct and transitive dependencies of of the project modules included here.booleanisUnpack()Get if set to true, this property will unpack all module packages into the specified output directory.voidremoveDependencySet(DependencySet dependencySet)Method removeDependencySet.voidremoveExclude(String string)Method removeExclude.voidremoveInclude(String string)Method removeInclude.voidsetAttachmentClassifier(String attachmentClassifier)Set when specified, the attachmentClassifier will cause the assembler to look at artifacts attached to the module instead of the main project artifact.voidsetDependencySets(List<DependencySet> dependencySets)Set specifies which dependencies of the module to include in the assembly.voidsetDirectoryMode(String directoryMode)Set similar to a UNIX permission, sets the directory mode of the directories included.voidsetExcludes(List<String> excludes)Set when <exclude> subelements are present, they define a set of dependency artifact coordinates to exclude.voidsetFileMode(String fileMode)Set similar to a UNIX permission, sets the file mode of the files included.voidsetIncludeDependencies(boolean includeDependencies)Set if set to true, the plugin will include the direct and transitive dependencies of of the project modules included here.voidsetIncludes(List<String> includes)Set when <include> subelements are present, they define a set of artifact coordinates to include.voidsetOutputDirectory(String outputDirectory)Set sets the output directory relative to the root of the root directory of the assembly.voidsetOutputFileNameMapping(String outputFileNameMapping)Set sets the mapping pattern for all NON-UNPACKED dependencies included in this assembly.voidsetUnpack(boolean unpack)Set if set to true, this property will unpack all module packages into the specified output directory.voidsetUnpackOptions(UnpackOptions unpackOptions)Set allows the specification of includes and excludes, along with filtering options, for items unpacked from a module artifact.
-
-
-
Method Detail
-
addDependencySet
public void addDependencySet(DependencySet dependencySet)
Method addDependencySet.- Parameters:
dependencySet- a dependencySet object.
-
addExclude
public void addExclude(String string)
Method addExclude.- Parameters:
string- a string object.
-
addInclude
public void addInclude(String string)
Method addInclude.- Parameters:
string- a string object.
-
getAttachmentClassifier
public String getAttachmentClassifier()
Get when specified, the attachmentClassifier will cause the assembler to look at artifacts attached to the module instead of the main project artifact. If it can find an attached artifact matching the specified classifier, it will use it; otherwise, it will throw an exception. (Since 2.2).- Returns:
- String
-
getDependencySets
public List<DependencySet> getDependencySets()
Method getDependencySets.- Returns:
- List
-
getDirectoryMode
public String getDirectoryMode()
Get similar to a UNIX permission, sets the directory mode of the directories included. THIS IS AN OCTAL VALUE. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the value 0755 translates to User read-write, Group and Other read-only. The default value is 0755. (more on unix-style permissions)- Returns:
- String
-
getFileMode
public String getFileMode()
Get similar to a UNIX permission, sets the file mode of the files included. THIS IS AN OCTAL VALUE. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the value 0644 translates to User read-write, Group and Other read-only. The default value is 0644. (more on unix-style permissions)- Returns:
- String
-
getOutputDirectory
public String getOutputDirectory()
Get sets the output directory relative to the root of the root directory of the assembly. For example, "log" will put the specified files in the log directory, directly beneath the root of the archive.- Returns:
- String
-
getOutputFileNameMapping
public String getOutputFileNameMapping()
Get sets the mapping pattern for all NON-UNPACKED dependencies included in this assembly. Default is ${module.artifactId}-${module.version}${dashClassifier?}.${module.extension}. (Since 2.2-beta-2; 2.2-beta-1 uses ${artifactId}-${version}${dashClassifier?}.${extension}) NOTE: If the dependencySet specifies unpack == true, outputFileNameMapping WILL NOT BE USED; in these cases, use outputDirectory. See the plugin FAQ for more details about entries usable in the outputFileNameMapping parameter.- Returns:
- String
-
getUnpackOptions
public UnpackOptions getUnpackOptions()
Get allows the specification of includes and excludes, along with filtering options, for items unpacked from a module artifact. (Since 2.2).- Returns:
- UnpackOptions
-
isIncludeDependencies
public boolean isIncludeDependencies()
Get if set to true, the plugin will include the direct and transitive dependencies of of the project modules included here. Otherwise, it will only include the module packages only. Default value is true.- Returns:
- boolean
-
isUnpack
public boolean isUnpack()
Get if set to true, this property will unpack all module packages into the specified output directory. When set to false module packages will be included as archives (jars). Default value is true.- Returns:
- boolean
-
removeDependencySet
public void removeDependencySet(DependencySet dependencySet)
Method removeDependencySet.- Parameters:
dependencySet- a dependencySet object.
-
removeExclude
public void removeExclude(String string)
Method removeExclude.- Parameters:
string- a string object.
-
removeInclude
public void removeInclude(String string)
Method removeInclude.- Parameters:
string- a string object.
-
setAttachmentClassifier
public void setAttachmentClassifier(String attachmentClassifier)
Set when specified, the attachmentClassifier will cause the assembler to look at artifacts attached to the module instead of the main project artifact. If it can find an attached artifact matching the specified classifier, it will use it; otherwise, it will throw an exception. (Since 2.2).- Parameters:
attachmentClassifier- a attachmentClassifier object.
-
setDependencySets
public void setDependencySets(List<DependencySet> dependencySets)
Set specifies which dependencies of the module to include in the assembly. A dependencySet is specified by providing one or more of <dependencySet> subelements. (Since 2.2).- Parameters:
dependencySets- a dependencySets object.
-
setDirectoryMode
public void setDirectoryMode(String directoryMode)
Set similar to a UNIX permission, sets the directory mode of the directories included. THIS IS AN OCTAL VALUE. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the value 0755 translates to User read-write, Group and Other read-only. The default value is 0755. (more on unix-style permissions)- Parameters:
directoryMode- a directoryMode object.
-
setExcludes
public void setExcludes(List<String> excludes)
Set when <exclude> subelements are present, they define a set of dependency artifact coordinates to exclude. If none is present, then <excludes> represents no exclusions. Artifact coordinates may be given in simple groupId:artifactId form, or they may be fully qualified in the form groupId:artifactId:type[:classifier]:version. Additionally, wildcards can be used, as in *:maven-*.- Parameters:
excludes- a excludes object.
-
setFileMode
public void setFileMode(String fileMode)
Set similar to a UNIX permission, sets the file mode of the files included. THIS IS AN OCTAL VALUE. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the value 0644 translates to User read-write, Group and Other read-only. The default value is 0644. (more on unix-style permissions)- Parameters:
fileMode- a fileMode object.
-
setIncludeDependencies
public void setIncludeDependencies(boolean includeDependencies)
Set if set to true, the plugin will include the direct and transitive dependencies of of the project modules included here. Otherwise, it will only include the module packages only. Default value is true.- Parameters:
includeDependencies- a includeDependencies object.
-
setIncludes
public void setIncludes(List<String> includes)
Set when <include> subelements are present, they define a set of artifact coordinates to include. If none is present, then <includes> represents all valid values. Artifact coordinates may be given in simple groupId:artifactId form, or they may be fully qualified in the form groupId:artifactId:type[:classifier]:version. Additionally, wildcards can be used, as in *:maven-*.- Parameters:
includes- a includes object.
-
setOutputDirectory
public void setOutputDirectory(String outputDirectory)
Set sets the output directory relative to the root of the root directory of the assembly. For example, "log" will put the specified files in the log directory, directly beneath the root of the archive.- Parameters:
outputDirectory- a outputDirectory object.
-
setOutputFileNameMapping
public void setOutputFileNameMapping(String outputFileNameMapping)
Set sets the mapping pattern for all NON-UNPACKED dependencies included in this assembly. Default is ${module.artifactId}-${module.version}${dashClassifier?}.${module.extension}. (Since 2.2-beta-2; 2.2-beta-1 uses ${artifactId}-${version}${dashClassifier?}.${extension}) NOTE: If the dependencySet specifies unpack == true, outputFileNameMapping WILL NOT BE USED; in these cases, use outputDirectory. See the plugin FAQ for more details about entries usable in the outputFileNameMapping parameter.- Parameters:
outputFileNameMapping- a outputFileNameMapping object.
-
setUnpack
public void setUnpack(boolean unpack)
Set if set to true, this property will unpack all module packages into the specified output directory. When set to false module packages will be included as archives (jars). Default value is true.- Parameters:
unpack- a unpack object.
-
setUnpackOptions
public void setUnpackOptions(UnpackOptions unpackOptions)
Set allows the specification of includes and excludes, along with filtering options, for items unpacked from a module artifact. (Since 2.2).- Parameters:
unpackOptions- a unpackOptions object.
-
-