Skip to content

Commit

Permalink
clarification for ignore build parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
katunin-ng committed Feb 25, 2020
1 parent 11a79e3 commit 22339e2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ You can configure the following build parameters to define artifacts to package
| Name | Default value | Description
| ------ | -------- | ----------
| `build-result` | For the `maven` builder: `<module's folder>/target/*.war` <br><br> For the `fetcher` builder: `<module's folder>/target/*.*` <br><br> For other builders: `<module's folder>` | A path to the build results that should be packaged.
| `ignore` | None | Files and/or subfolders to exclude from the package.
| `ignore` | None | Files and/or subfolders to exclude from the package. <br>The provided paths should be relative to the build result folder, which can be the module's root folder (default) or the folder specified in the `build-result` parameter.



Expand All @@ -201,6 +201,8 @@ For example:
build-result: myfolder
ignore: ["*.txt", "mtaignore/"]
# In this example, the following will not be packaged in to MTA archive:
# all files with the"txt" extension and the "mtaignore" folder within the "myfolder" directory.
```

Expand Down

0 comments on commit 22339e2

Please sign in to comment.