This is an automated email from the ASF dual-hosted git repository.
cziegeler pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 3858dcb Fix readme about how to select features
3858dcb is described below
commit 3858dcb4c1d649010f22e03086f8d2e3a8aad8cb
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Fri Jul 26 13:41:29 2019 +0200
Fix readme about how to select features
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 6f67496..c4ee341 100644
--- a/README.md
+++ b/README.md
@@ -34,9 +34,9 @@ All of these goals use the same way of selecting the
features: Whenever a goal c
...
```
-The order of the above include statements defines the order in which the
features are processed. If an include contains a pattern, all files matching
that pattern are processed in alphabetical order based on their filename.
+The order of the above include statements defines the order in which the
features are processed. If an include contains a pattern, all files matching
that pattern are processed in string order based on their full path.
-In addition, most of the goals can also be configured to select aggregated
features (see below) based on their qualifier. The special token `*` can be
used to select all aggregated features and an empty classifier selects the
aggregated feature without a classifier (main artifact).
+In addition, most of the goals can also be configured to select aggregated
features (see below) based on their qualifier. The special token `*` can be
used to select all aggregated features and the token `:` selects the aggregated
feature without a classifier (main artifact).
```
...