Comma separated list of include or exclude wildcard patterns. Exclude patterns start with exclamation mark "!".

Example: *.jar */folder/* */folder1/folder2/* */folder*/* */file.* */file*.jar */test/*file*.*

May reference build parameters like ${PARAM}.

Examples:

"**/*.jar" matches all .jar jars in a directory tree.

"*/test/a??.jar" matches all files/dirs which start with an 'a', then two more characters and then ".jar", in a directory called test.

"**" matches everything in a directory tree.

"**/test/**/XYZ*" matches all files/dirs which start with "XYZ" and where there is a parent directory called test (e.g. "abc/test/def/ghi/XYZ123").