diff --git a/docs/modules/configuration/pages/files.adoc b/docs/modules/configuration/pages/files.adoc index da9d48c..d0b0ab3 100644 --- a/docs/modules/configuration/pages/files.adoc +++ b/docs/modules/configuration/pages/files.adoc @@ -28,9 +28,13 @@ files: # If undefined, will use the project's basedir. # [optional] - directory: some/directory - # The pattern to apply. - # [required] - pattern: '*.txt' + # The pattern to apply for inclusion. + # If undefined, will use `*`. + # [optional] + include: '*.txt' + # The pattern to apply for exclusion. + # [optional] + exclude: 'secret' # Recursive search. # Defaults to `false`. # [optional] @@ -67,9 +71,14 @@ JSON:: // [optional] "directory": "some/directory", - // The pattern to apply. + // The pattern to apply for inclusion. + // If undefined, will use `*`. // [required] - "pattern": "*.txt", + "include": "*.txt", + + // The pattern to apply for exclusion. + // [optional] + "exclude": "secret", // Recursive search. // Defaults to `false`. @@ -120,10 +129,17 @@ Maven:: some/directory - *.txt + *.txt + + + secret