Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/main/mdo/assembly-component.mdo
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@
<![CDATA[
When &lt;include&gt; subelements are present, they define a set of
files and directory to include. If none is present, then
&lt;includes&gt; represents all valid values.
&lt;includes&gt; represents all valid values. Note that this pattern
can be in the from of a regular expression by using the %regex[...]
syntax.
]]>
</description>
</field>
Expand All @@ -188,7 +190,9 @@
<![CDATA[
When &lt;exclude&gt; subelements are present, they define a set of
files and directory to exclude. If none is present, then
&lt;excludes&gt; represents no exclusions.
&lt;excludes&gt; represents no exclusions. Note that this pattern
can be in the from of a regular expression by using the %regex[...]
syntax.
]]>
</description>
</field>
Expand Down
8 changes: 6 additions & 2 deletions src/main/mdo/assembly.mdo
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,9 @@
<![CDATA[
When &lt;include&gt; subelements are present, they define a set of
files and directory to include. If none is present, then
&lt;includes&gt; represents all valid values.
&lt;includes&gt; represents all valid values. Note that this pattern
can be in the from of a regular expression by using the %regex[...]
syntax.
]]>
</description>
</field>
Expand All @@ -308,7 +310,9 @@
<![CDATA[
When &lt;exclude&gt; subelements are present, they define a set of
files and directory to exclude. If none is present, then
&lt;excludes&gt; represents no exclusions.
&lt;excludes&gt; represents no exclusions. Note that this pattern
can be in the from of a regular expression by using the %regex[...]
syntax.
]]>
</description>
</field>
Expand Down
2 changes: 2 additions & 0 deletions src/site/apt/advanced-descriptor-topics.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ Advanced Assembly-Descriptor Topics
of <<<fileSet>>> patterns, including the option to change the default pattern syntax
someday.

<Note:> The same syntax is also supported for include patterns.

** Example: Including directories named <<<target>>> in the <<<src>>> directory

In this example, we want to produce a buildable source distribution of a
Expand Down