Compare commits

..

4 Commits

2 changed files with 5 additions and 5 deletions

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` | Copy all the files in each fileset into a target directory; appending contents of any duplicate filenames. | | `merge-files` | Merge the configured fileset of directories and their files into |
| `merge-dirs` | Copy all the directories in each fileset into a target directory; appending contents of 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. |
| `append-files` | Append all the files in each fileset into a target file. | | `append-files` | Apply a regular expression pattern against a property value, replacing matches with the specified text, and storing in a new property. |
### 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 name of the file to output from the merged filesets; will be created in fileset output directory. | | `outputFileName` | `string` | | `merged.txt` | The file to output from the merged filesets. |
| `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. |

View File

@ -6,7 +6,7 @@
<groupId>com.inteligr8</groupId> <groupId>com.inteligr8</groupId>
<artifactId>merge-maven-plugin</artifactId> <artifactId>merge-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0.0</version>
<packaging>maven-plugin</packaging> <packaging>maven-plugin</packaging>
<name>Directory Merge Maven Plugin</name> <name>Directory Merge Maven Plugin</name>