Compare commits

...

1 Commits

Author SHA1 Message Date
b29afab876 fixed documentation 2023-01-10 17:45:05 -05:00

View File

@ -7,9 +7,9 @@ This is a maven plugin that provides directory/file merging/appending support to
| Goal | Description | | Goal | Description |
| -------------------- | ----------- | | -------------------- | ----------- |
| `merge-files` | Merge the configured fileset of directories and their files into | | `merge-files` | Copy all the files in each fileset into a target directory; appending contents of any duplicate filenames. |
| `merge-dirs` | Apply a regular expression pattern against a set of property values, replacing matches with the specified text, and storing in new properties. | | `merge-dirs` | Copy all the directories in each fileset into a target directory; appending contents of duplicate filenames. |
| `append-files` | Apply a regular expression pattern against a property value, replacing matches with the specified text, and storing in a new property. | | `append-files` | Append all the files in each fileset into a target file. |
### Goal: `merge-files` ### Goal: `merge-files`
@ -37,7 +37,7 @@ This is a maven plugin that provides directory/file merging/appending support to
| ---------------------- |:-----------:|:--------:| ------- | ----------- | | ---------------------- |:-----------:|:--------:| ------- | ----------- |
| `filesets` | `FileSet[]` | Yes | | Executes against these files. | | `filesets` | `FileSet[]` | Yes | | Executes against these files. |
| `includeHeader` | `boolean` | | `false` | Should a header be added for each appended file? | | `includeHeader` | `boolean` | | `false` | Should a header be added for each appended file? |
| `outputFileName` | `string` | | `merged.txt` | The file to output from the merged filesets. | | `outputFileName` | `string` | | `merged.txt` | The name of the file to output from the merged filesets; will be created in fileset output directory. |
| `chunkSize` | `int` | | `1024` | The streaming buffer/chunk size in bytes, while merging files. Adjust for classic speed/memory trade-off. | | `chunkSize` | `int` | | `1024` | The streaming buffer/chunk size in bytes, while merging files. Adjust for classic speed/memory trade-off. |
| `encoding` | `string` | | `utf-8` | | | `encoding` | `string` | | `utf-8` | |
| `spacing` | `int` | | `0` | How much spacing between appended files. | | `spacing` | `int` | | `0` | How much spacing between appended files. |