This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 136fe366 [MASSEMBLY-1018] Fix examples about useStrictFiltering
136fe366 is described below

commit 136fe366c2ff8f44146d08d408890ac9e2e91a1d
Author: Slawomir Jaranowski <s.jaranow...@gmail.com>
AuthorDate: Sun Feb 11 14:49:31 2024 +0100

    [MASSEMBLY-1018] Fix examples about useStrictFiltering
---
 src/site/apt/advanced-descriptor-topics.apt.vm | 34 +++++++++++---------------
 1 file changed, 14 insertions(+), 20 deletions(-)

diff --git a/src/site/apt/advanced-descriptor-topics.apt.vm 
b/src/site/apt/advanced-descriptor-topics.apt.vm
index 8eb25a25..8b096c00 100644
--- a/src/site/apt/advanced-descriptor-topics.apt.vm
+++ b/src/site/apt/advanced-descriptor-topics.apt.vm
@@ -229,7 +229,7 @@ Advanced Assembly-Descriptor Topics
   [...]
   <fileSets>
     <fileSet>
-      <directory>${project.basedir}</directory>
+      <directory>\${project.basedir}</directory>
       <outputDirectory></outputDirectory>
       <excludes>
         <exclude>%regex[(?!.*src/).*target.*]</exclude>
@@ -252,44 +252,38 @@ Advanced Assembly-Descriptor Topics
   At times, you want to build in a set of sanity checks when creating your
   assembly, to ensure that what goes into the assembly artifact is what you
   intended. One way you can do this is by enabling <<<useStrictFiltering>>> on
-  your <<<dependencySets>>>, <<<moduleSets>>>, and <<<fileSets>>>.
+  your <<<dependencySets>>>.
 
   <<<useStrictFiltering>>> is a flag that tells the assembly plugin to track
   each include/exclude pattern to make sure it's used during creation of the
   assembly. This way, if the assembly-descriptor author intended for a 
particular
-  file or artifact to be present, he can add an include/exclude pattern to the
-  descriptor to ensure that file/artifact is present, and then set the
+  artifact to be present, he can add an include/exclude pattern to the
+  descriptor to ensure that artifact is present, and then set the
   <<<useStrictFiltering>>> flag. If the pattern isn't used to match at least 
one
-  file during assembly creation, the build will fail and the user will receive 
a
+  artifact during assembly creation, the build will fail and the user will 
receive a
   message notifying him of the unused patterns.
 
-** Example: Ensuring the LICENSE.txt file is included in a jar
-
-  In this example, we want to make sure that our project jar contains the
-  project's open source license language, in order to be compliant with our
-  software foundation's policies.
+** Example:
 
 +---
 <assembly xmlns="http://maven.apache.org/ASSEMBLY/${mdoVersion}";
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
     xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/${mdoVersion} 
http://maven.apache.org/xsd/assembly-${mdoVersion}.xsd";>
   [...]
-  <fileSets>
-    <fileSet>
-      <useStrictFiltering>true</useStrictFiltering>
-      <outputDirectory>META-INF</outputDirectory>
+  <dependencySets>
+    <dependencySet>
       <includes>
-        <include>LICENSE.txt</include>
+        <include>commons-logging:commons-logging</include>
       </includes>
-    </fileSet>
-    [...]
-  </fileSets>
+      <useStrictFiltering>true</useStrictFiltering>
+    </dependencySet>
+  </dependencySets>
   [...]
 </assembly>
 +---
 
-  If a developer inadvertently removes the LICENSE.txt from the project
-  directory, the assembly plugin should refuse to build this assembly.
+  If <<commons-logging>> artifact will not present on the project dependencies 
list,
+  the assembly plugin should refuse to build this assembly.
 
 * Using an Alternative Assembly Base Directory
 

Reply via email to