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

sergehuber pushed a commit to branch chore/local-notes-gitignore-rat
in repository https://gitbox.apache.org/repos/asf/unomi.git

commit fe986497173d9e1491d6c7288478ee46308abf10
Author: Serge Huber <[email protected]>
AuthorDate: Tue May 19 08:32:50 2026 +0200

    Exclude .local-notes from git and RAT
    
    Local stack-extraction notes are developer-only; ignore the directory
    and skip RAT so builds are not blocked by unlicensed markdown.
---
 .gitignore | 1 +
 pom.xml    | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/.gitignore b/.gitignore
index 88b5fda8e..789812914 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,3 +20,4 @@ rest/.miredot-offline.json
 itests/src/main
 dependency_tree.txt
 .mvn/.develocity/develocity-workspace-id
+/.local-notes/
diff --git a/pom.xml b/pom.xml
index 25360797d..174e68308 100644
--- a/pom.xml
+++ b/pom.xml
@@ -641,6 +641,8 @@
                                 <exclude>**/*.js.map</exclude>
                                 <!-- Exclude dependency tree generated files 
-->
                                 <exclude>**/dependency_tree.txt</exclude>
+                                <!-- local developer notes (not part of the 
release) -->
+                                <exclude>**/.local-notes/**</exclude>
                             </excludes>
                         </configuration>
                     </plugin>

Reply via email to