Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Elements

TAG

TYPE

COUNT

DESCRIPTION

<include>

java.lang.String

0:N

if path matches this pattern, include it

<exclude>

java.lang.String

0:N

if path matches this pattern, exclude it

<includes>

java.util.List

<tag>

type

0:1

comment

ReturnValues

list of patterns for inclusion (usually not used; multiple <include> elements is more common)

<excludes>

java.util.List

0:1

list of patterns for exclusion (usually not used); multiple <exclude> elements is more common)

DEFAULT NAME

TYPE

name

type

NOTES

The default exclusion patterns are:

Code Block
// Miscellaneous typical temporary files
"**/*~", "**/#*#", "**/.#*", "**/%*%", "**/._*",

// CVS
"**/CVS", "**/CVS/**", "**/.cvsignore",
			
// SCCS
"**/SCCS", "**/SCCS/**",
			
// Visual SourceSafe
"**/vssver.scc",

// Subversion
"**/.svn", "**/.svn/**",

// Mac
"**/.DS_Store"			

Examples

...

See, for instance, copy for examples.