Serialized Form
- 
Package org.apache.maven.plugins.assembly- 
Exception Class org.apache.maven.plugins.assembly.InvalidAssemblerConfigurationExceptionclass InvalidAssemblerConfigurationException extends Exception implements Serializable- serialVersionUID:
- 1L
 
 
- 
- 
Package org.apache.maven.plugins.assembly.archive- 
Exception Class org.apache.maven.plugins.assembly.archive.ArchiveCreationExceptionclass ArchiveCreationException extends Exception implements Serializable- serialVersionUID:
- 1L
 
- 
Exception Class org.apache.maven.plugins.assembly.archive.ArchiveExpansionExceptionclass ArchiveExpansionException extends Exception implements Serializable- serialVersionUID:
- 1L
 
 
- 
- 
Package org.apache.maven.plugins.assembly.artifact- 
Exception Class org.apache.maven.plugins.assembly.artifact.DependencyResolutionExceptionclass DependencyResolutionException extends Exception implements Serializable- serialVersionUID:
- 1L
 
 
- 
- 
Package org.apache.maven.plugins.assembly.format- 
Exception Class org.apache.maven.plugins.assembly.format.AssemblyFormattingExceptionclass AssemblyFormattingException extends Exception implements Serializable- serialVersionUID:
- 1L
 
 
- 
- 
Package org.apache.maven.plugins.assembly.interpolation- 
Exception Class org.apache.maven.plugins.assembly.interpolation.AssemblyInterpolationExceptionclass AssemblyInterpolationException extends Exception implements Serializable- serialVersionUID:
- 1L
 
 
- 
- 
Package org.apache.maven.plugins.assembly.io- 
Exception Class org.apache.maven.plugins.assembly.io.AssemblyReadExceptionclass AssemblyReadException extends Exception implements Serializable- serialVersionUID:
- 1L
 
 
- 
- 
Package org.apache.maven.plugins.assembly.model- 
Class org.apache.maven.plugins.assembly.model.Assemblyclass Assembly extends Object implements Serializable- 
Serialized Fields- 
baseDirectoryString baseDirectory Sets the base directory of the resulting assembly archive. If this is not set and includeBaseDirectory == true, ${project.build.finalName} will be used instead. (Since 2.2-beta-1) .
- 
componentDescriptorsList<String> componentDescriptors Field componentDescriptors.
- 
containerDescriptorHandlersList<ContainerDescriptorHandlerConfig> containerDescriptorHandlers Field containerDescriptorHandlers.
- 
dependencySetsList<DependencySet> dependencySets Field dependencySets.
- 
filesList<FileItem> files Field files.
- 
fileSetsList<FileSet> fileSets Field fileSets.
- 
formatsList<String> formats Field formats.
- 
idString id Sets the id of this assembly. This is a symbolic name for a particular assembly of files from this project. Also, aside from being used to distinctly name the assembled package by attaching its value to the generated archive, the id is used as your artifact's classifier when deploying.
- 
includeBaseDirectoryboolean includeBaseDirectory Includes a base directory in the final archive. For example, if you are creating an assembly named "your-app", setting includeBaseDirectory to true will create an archive that includes this base directory. If this option is set to false the archive created will unzip its content to the current directory.
- 
includeSiteDirectoryboolean includeSiteDirectory Includes a site directory in the final archive. The site directory location of a project is determined by the siteDirectory parameter of the Assembly Plugin.
- 
modelEncodingString modelEncoding Field modelEncoding.
- 
moduleSetsList<ModuleSet> moduleSets Field moduleSets.
 
- 
 
- 
- 
Class org.apache.maven.plugins.assembly.model.Componentclass Component extends Object implements Serializable- 
Serialized Fields- 
containerDescriptorHandlersList<ContainerDescriptorHandlerConfig> containerDescriptorHandlers Field containerDescriptorHandlers.
- 
dependencySetsList<DependencySet> dependencySets Field dependencySets.
- 
filesList<FileItem> files Field files.
- 
fileSetsList<FileSet> fileSets Field fileSets.
- 
modelEncodingString modelEncoding Field modelEncoding.
- 
moduleSetsList<ModuleSet> moduleSets Field moduleSets.
 
- 
 
- 
- 
Class org.apache.maven.plugins.assembly.model.ContainerDescriptorHandlerConfigclass ContainerDescriptorHandlerConfig extends Object implements Serializable
- 
Class org.apache.maven.plugins.assembly.model.DependencySetclass DependencySet extends Object implements Serializable- 
Serialized Fields- 
directoryModeString directoryMode 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)
- 
excludesList<String> excludes Field excludes.
- 
fileModeString fileMode 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)
- 
includesList<String> includes Field includes.
- 
outputDirectoryString outputDirectory 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.
- 
outputFileNameMappingString outputFileNameMapping Sets the mapping pattern for all dependencies included in this assembly. Default is ${artifact.artifactId}-${artifact.version}${dashClassifier?}.${artifact.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.
- 
scopeString scope Sets the dependency scope for this dependencySet. Default scope value is "runtime".
- 
unpackboolean unpack If set to true, this property will unpack all dependencies into the specified output directory. When set to false, dependencies will be included as archives (jars). Can only unpack jar, zip, tar.gz, and tar.bz archives. Default value is false.
- 
unpackOptionsUnpackOptions unpackOptions Allows the specification of includes and excludes, along with filtering options, for items unpacked from a dependency artifact. (Since 2.2) .
- 
useProjectArtifactboolean useProjectArtifact Determines whether the artifact produced during the current project's build should be included in this dependency set. Default value is true, for backward compatibility. (Since 2.2) .
- 
useProjectAttachmentsboolean useProjectAttachments Determines whether the attached artifacts produced during the current project's build should be included in this dependency set. Default value is false. (Since 2.2) .
- 
useStrictFilteringboolean useStrictFiltering When specified as true, any include/exclude patterns which aren't used to filter an actual artifact during assembly creation will cause the build to fail with an error. This is meant to highlight obsolete inclusions or exclusions, or else signal that the assembly descriptor is incorrectly configured. (Since 2.2) .
- 
useTransitiveDependenciesboolean useTransitiveDependencies Determines whether transitive dependencies will be included in the processing of the current dependency set. If true, includes/excludes/useTransitiveFiltering will apply to transitive dependency artifacts in addition to the main project dependency artifacts. If false, useTransitiveFiltering is meaningless, and includes/excludes only affect the immediate dependencies of the project. By default, this value is true. (Since 2.2) .
- 
useTransitiveFilteringboolean useTransitiveFiltering Determines whether the include/exclude patterns in this dependency set will be applied to the transitive path of a given artifact. If true, and the current artifact is a transitive dependency brought in by another artifact which matches an inclusion or exclusion pattern, then the current artifact has the same inclusion/exclusion logic applied to it as well. By default, this value is false, in order to preserve backward compatibility with version 2.1. This means that includes/excludes only apply directly to the current artifact, and not to the transitive set of artifacts which brought it in. (Since 2.2) .
 
- 
 
- 
- 
Class org.apache.maven.plugins.assembly.model.FileItemclass FileItem extends Object implements Serializable- 
Serialized Fields- 
destNameString destName Sets the destination filename in the outputDirectory. Default is the same name as the source's file.
- 
fileModeString fileMode 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)
- 
filteredboolean filtered Sets whether to determine if the file is filtered.
- 
lineEndingString lineEnding Sets the line-endings of the files in this file. Valid values are:- "keep" - Preserve all line endings
- "unix" - Use Unix-style line endings
- "lf" - Use a single line-feed line endings
- "dos" - Use DOS-style line endings
- "crlf" - Use Carraige-return, line-feed line endings
 
- 
outputDirectoryString outputDirectory 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.
- 
sourceString source Sets the absolute or relative path from the module's directory of the file to be included in the assembly.
- 
sourcesList<String> sources Field sources.
 
- 
 
- 
- 
Class org.apache.maven.plugins.assembly.model.FileSetclass FileSet extends Object implements Serializable- 
Serialized Fields- 
directoryString directory Sets the absolute or relative location from the module's directory. For example, "src/main/bin" would select this subdirectory of the project in which this dependency is defined.
- 
directoryModeString directoryMode 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)
- 
excludesList<String> excludes Field excludes.
- 
fileModeString fileMode 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)
- 
filteredboolean filtered Whether to filter symbols in the files as they are copied, using properties from the build configuration. (Since 2.2) .
- 
includesList<String> includes Field includes.
- 
lineEndingString lineEnding Sets the line-endings of the files in this fileSet. Valid values:- "keep" - Preserve all line endings
- "unix" - Use Unix-style line endings
- "lf" - Use a single line-feed line endings
- "dos" - Use DOS-style line endings
- "crlf" - Use Carraige-return, line-feed line endings
 
- 
nonFilteredFileExtensionsList<String> nonFilteredFileExtensions Field nonFilteredFileExtensions.
- 
outputDirectoryString outputDirectory 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.
- 
useDefaultExcludesboolean useDefaultExcludes Whether standard exclusion patterns, such as those matching CVS and Subversion metadata files, should be used when calculating the files affected by this set. For backward compatibility, the default value is true. (Since 2.2) .
 
- 
 
- 
- 
Class org.apache.maven.plugins.assembly.model.ModuleBinariesclass ModuleBinaries extends Object implements Serializable- 
Serialized Fields- 
attachmentClassifierString attachmentClassifier 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) .
- 
dependencySetsList<DependencySet> dependencySets Field dependencySets.
- 
directoryModeString directoryMode 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)
- 
excludesList<String> excludes Field excludes.
- 
fileModeString fileMode 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)
- 
includeDependenciesboolean includeDependencies 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.
- 
includesList<String> includes Field includes.
- 
outputDirectoryString outputDirectory 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.
- 
outputFileNameMappingString outputFileNameMapping 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.
- 
unpackboolean unpack 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.
- 
unpackOptionsUnpackOptions unpackOptions Allows the specification of includes and excludes, along with filtering options, for items unpacked from a module artifact. (Since 2.2) .
 
- 
 
- 
- 
Class org.apache.maven.plugins.assembly.model.ModuleSetclass ModuleSet extends Object implements Serializable- 
Serialized Fields- 
binariesModuleBinaries binaries When this is present, the plugin will include the binaries of the included modules from this set in the resulting assembly.
- 
excludesList<String> excludes Field excludes.
- 
includesList<String> includes Field includes.
- 
includeSubModulesboolean includeSubModules If set to false, the plugin will exclude sub-modules from processing in this ModuleSet. Otherwise, it will process all sub-modules, each subject to include/exclude rules. Default value is true. (Since 2.2) .
- 
sourcesModuleSources sources When this is present, the plugin will include the source files of the included modules from this set in the resulting assembly.
- 
useAllReactorProjectsboolean useAllReactorProjects If set to true, the plugin will include all projects in the current reactor for processing in this ModuleSet. These will be subject to include/exclude rules. Default value is true. (Since 2.2) .
 
- 
 
- 
- 
Class org.apache.maven.plugins.assembly.model.ModuleSourcesclass ModuleSources extends Object implements Serializable- 
Serialized Fields- 
directoryModeString directoryMode 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)
- 
excludesList<String> excludes Field excludes.
- 
excludeSubModuleDirectoriesboolean excludeSubModuleDirectories Specifies whether sub-module directories below the current module should be excluded from fileSets applied to that module. This might be useful if you only mean to copy the sources for the exact module list matched by this ModuleSet, ignoring (or processing separately) the modules which exist in directories below the current one. Default value is true. (Since 2.2) .
- 
fileModeString fileMode 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)
- 
fileSetsList<FileSet> fileSets Field fileSets.
- 
includeModuleDirectoryboolean includeModuleDirectory Specifies whether the module's finalName should be prepended to the outputDirectory values of any fileSets applied to it. Default value is true. (Since 2.2) .
- 
includesList<String> includes Field includes.
- 
outputDirectoryString outputDirectory 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.
- 
outputDirectoryMappingString outputDirectoryMapping Sets the mapping pattern for all module base-directories included in this assembly. NOTE: This field is only used if includeModuleDirectory == true. Default is the module's ${artifactId} in 2.2-beta-1, and ${module.artifactId} in subsequent versions. (Since 2.2) .
- 
useDefaultExcludesboolean useDefaultExcludes Whether standard exclusion patterns, such as those matching CVS and Subversion metadata files, should be used when calculating the files affected by this set. For backward compatibility, the default value is true. (Since 2.2) .
 
- 
 
- 
- 
Class org.apache.maven.plugins.assembly.model.UnpackOptionsclass UnpackOptions extends Object implements Serializable- 
Serialized Fields- 
encodingString encoding Allows to specify the encoding to use when unpacking archives, for unarchivers that support specifying encoding. If unspecified, archiver default will be used. Archiver defaults generally represent sane (modern) values.
- 
excludesList<String> excludes Field excludes.
- 
filteredboolean filtered Whether to filter symbols in the files as they are unpacked from the archive, using properties from the build configuration. (Since 2.2) .
- 
includesList<String> includes Field includes.
- 
lineEndingString lineEnding Sets the line-endings of the files. (Since 2.2) Valid values:- "keep" - Preserve all line endings
- "unix" - Use Unix-style line endings
- "lf" - Use a single line-feed line endings
- "dos" - Use DOS-style line endings
- "crlf" - Use Carraige-return, line-feed line endings
 
- 
nonFilteredFileExtensionsList<String> nonFilteredFileExtensions Field nonFilteredFileExtensions.
- 
useDefaultExcludesboolean useDefaultExcludes Whether standard exclusion patterns, such as those matching CVS and Subversion metadata files, should be used when calculating the files affected by this set. For backward compatibility, the default value is true. (Since 2.2) .
 
- 
 
- 
 
-