fileset FileSet A definition of a file-set. This model defines how file-sets can be captured, using directory, includes, and excludes.

]]>
package org.apache.maven.shared.model.fileset SetBase 1.1.0 followSymlinks 1.0.0+ boolean false Specifies whether symbolic links should be traversed, or handled as-is. outputDirectory 1.0.0+ String Specifies 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. useDefaultExcludes 1.1.0 boolean true Whether to include exclusion patterns for common temporary and SCM control files (true by default). includes 1.0.0+ String * excludes 1.0.0+ String * fileMode 1.0.0+ String 0644 (more on unix-style permissions) ]]> directoryMode 1.0.0+ String 0755 (more on unix-style permissions) ]]> mapper 1.1.0 Mapper new Mapper() Specifies the mapper used. 1.0.0+ includes = getIncludes(); if ( includes != null && !includes.isEmpty() ) { includesArry = (String[]) includes.toArray( new String[0] ); } else if ( includes != null ) { includesArry = new String[0]; } return includesArry; } /** * @return the file-set exclusion rules in array form. */ public String[] getExcludesArray() { String[] excludesArry = null; java.util.List excludes = getExcludes(); if ( excludes != null && !excludes.isEmpty() ) { excludesArry = (String[]) excludes.toArray( new String[0] ); } else if ( excludes != null ) { excludesArry = new String[0]; } return excludesArry; } ]]> Mapper 1.1.0 type 1.1.0 String identity Valid values:
  • "flatten" - The target file name is identical to the source file name, with all leading directory information stripped off. Both to and from will be ignored.
  • "glob" - Both to and from define patterns that may contain at most one *. For each source file that matches the from pattern, a target file name will be constructed from the to pattern by substituting the * in the to pattern with the text that matches the * in the from pattern. Source file names that don't match the from pattern will be ignored.
  • "regexp" - Both to and from define regular expressions. If the source file name matches the from pattern, the target file name will be constructed from the to pattern, using \0 to \9 as back-references for the full match (\0) or the matches of the subexpressions in parentheses. Source files not matching the from pattern will be ignored.
  • "merge" - The target file name will always be the same, as defined by to. from will be ignored.
  • "package" - Sharing the same syntax as the glob mapper, the package mapper replaces directory separators found in the matched source pattern with dots in the target pattern placeholder.
  • "unpackage" - This mapper is the inverse of the package mapper. It replaces the dots in a package name with directory separators. This is useful for matching XML formatter results against their JUnit test test cases. The mapper shares the sample syntax as the glob mapper.
]]>
from 1.1.0 String Specifies a type-specific pattern for matching source paths which should be mapped. to 1.1.0 String Specifies a type-specific pattern for producing paths based on source paths. classname 1.1.0 String Allows specification of a custom mapper implementation. The class must be of type org.apache.maven.shared.model.fileset.mappers.FileNameMapper, from the artifact org.apache.maven.shared:file-management.
FileSet 1.1.0 SetBase Defines the rules for matching and working with files in a given base directory. directory 1.0.0+ String Absolute or relative from the module's directory. For example, "src/main/bin" would select this subdirectory of the project in which this dependency is defined. true lineEnding 1.0.0+ String 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
]]>